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

15 lines
229 B
Plaintext

{
{
function z() -> x { x := y() }
function y() -> x { x := z() }
}
{
function z() -> x { x := y() }
function y() -> x { x := z() }
}
}
// ====
// step: circularReferencesPruner
// ----
// { }