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

15 lines
228 B
Plaintext
Raw Normal View History

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