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

23 lines
466 B
Plaintext

{
let x := calldataload(0)
let y := calldataload(0)
let z := sub(y, x)
sstore(add(x, 0), z)
}
// ====
// optimizationPreset: full
// ----
// Assembly:
// /* "source":26:27 */
// 0x00
// /* "source":13:28 */
// dup1
// calldataload
// /* "source":79:99 */
// sstore
// /* "source":0:101 */
// stop
// Bytecode: 600080355500
// Opcodes: PUSH1 0x0 DUP1 CALLDATALOAD SSTORE STOP
// SourceMappings: 26:1:0:-:0;13:15;;79:20;0:101