solidity/test/libyul/yulOptimizerTests/structuralSimplifier/if_true_condition.yul
2019-04-03 14:58:20 +02:00

8 lines
102 B
Plaintext

{ if 1 { mstore(0, 0) } }
// ====
// step: structuralSimplifier
// ----
// {
// mstore(0, 0)
// }