solidity/test/libyul/yulOptimizerTests/functionGrouper/grouped_but_not_ordered.yul

15 lines
188 B
Plaintext
Raw Normal View History

2019-01-08 14:03:40 +00:00
{
function f() -> y { y := 8 }
{
let x := 2
}
}
2019-04-01 14:33:46 +00:00
// ====
// step: functionGrouper
2019-01-08 14:03:40 +00:00
// ----
// {
// { { let x := 2 } }
2019-01-08 14:03:40 +00:00
// function f() -> y
// { y := 8 }
2019-01-08 14:03:40 +00:00
// }