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

9 lines
130 B
Plaintext
Raw Normal View History

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