solidity/test/libyul/evmCodeTransform/stackReuse/for_1.yul
Daniel Kirchner 7e061db811 Update tests.
2021-09-14 15:54:24 +02:00

17 lines
306 B
Plaintext

{ for { let z := 0 } 1 { } { let x := 3 } let t := 2 }
// ====
// stackOptimization: true
// ----
// /* "":17:18 */
// 0x00
// /* "":6:20 */
// pop
// /* "":27:41 */
// tag_1:
// /* "":38:39 */
// 0x03
// /* "":27:41 */
// pop
// /* "":23:26 */
// jump(tag_1)