solidity/test/libyul/evmCodeTransform/stackReuse/for_2.yul
Daniel Kirchner fd36ec3dca Test updates.
2021-07-06 19:05:36 +02:00

14 lines
266 B
Plaintext

{ for { let z := 0 } 1 { } { z := 8 let x := 3 } let t := 2 }
// ====
// stackOptimization: true
// ----
// /* "":17:18 */
// pop(0x00)
// jump(tag_1)
// tag_1:
// /* "":34:35 */
// pop(0x08)
// /* "":45:46 */
// pop(0x03)
// jump(tag_1)