solidity/test/libyul/evmCodeTransform/stackReuse/for_1.yul
Daniel Kirchner 1a0605c594 Update tests.
2021-11-03 12:39:55 +01: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)