solidity/test/libyul/evmCodeTransform/stackReuse/multi_reuse_single_slot.yul

21 lines
351 B
Plaintext
Raw Normal View History

2021-03-09 13:53:10 +00:00
{ let x := 1 x := 6 let y := 2 y := 4 }
// ====
// stackOptimization: true
// ----
2021-09-15 15:01:40 +00:00
// /* "":11:12 */
// 0x01
// /* "":13:19 */
// pop
// /* "":18:19 */
// 0x06
// /* "":20:30 */
// pop
// /* "":29:30 */
// 0x02
// /* "":31:37 */
// pop
// /* "":36:37 */
// 0x04
// /* "":0:39 */
// stop