solidity/test/libyul/evmCodeTransform/stackReuse/multi_reuse_single_slot.yul
Daniel Kirchner 1a0605c594 Update tests.
2021-11-03 12:39:55 +01:00

21 lines
351 B
Plaintext

{ let x := 1 x := 6 let y := 2 y := 4 }
// ====
// stackOptimization: true
// ----
// /* "":11:12 */
// 0x01
// /* "":13:19 */
// pop
// /* "":18:19 */
// 0x06
// /* "":20:30 */
// pop
// /* "":29:30 */
// 0x02
// /* "":31:37 */
// pop
// /* "":36:37 */
// 0x04
// /* "":0:39 */
// stop