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

14 lines
249 B
Plaintext

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