solidity/test/libyul/evmCodeTransform/stackReuse/function_argument_reuse.yul
2021-04-06 13:31:22 +02:00

29 lines
338 B
Plaintext

{
function f(a, b, c) -> x { pop(address()) sstore(a, c) pop(callvalue()) x := b }
}
// ====
// stackOptimization: true
// ----
// PUSH1 0x17
// JUMP
// JUMPDEST
// PUSH1 0x0
// ADDRESS
// POP
// DUP4
// DUP3
// SSTORE
// CALLVALUE
// POP
// DUP3
// SWAP1
// POP
// JUMPDEST
// SWAP4
// SWAP3
// POP
// POP
// POP
// JUMP
// JUMPDEST