solidity/test/libyul/yulOptimizerTests/circularReferencesPruner/nested_different_names.yul

15 lines
228 B
Plaintext
Raw Normal View History

{
{
function a() -> x { x := b() }
function b() -> y { y := a() }
}
{
function c() -> z { z := d() }
function d() -> w { w := c() }
}
}
// ----
// step: circularReferencesPruner
//
2021-11-09 12:25:25 +00:00
// { { } }