mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
28 lines
508 B
Plaintext
28 lines
508 B
Plaintext
{
|
|
let a := calldataload(0)
|
|
let b := 20
|
|
sstore(a, b)
|
|
if calldataload(32) {
|
|
sstore(a, b)
|
|
pop(staticcall(0, 0, 0, 0, 0, 0))
|
|
verbatim_0i_0o("xyz")
|
|
}
|
|
sstore(a, b)
|
|
}
|
|
// ====
|
|
// EVMVersion: >=byzantium
|
|
// ----
|
|
// step: equalStoreEliminator
|
|
//
|
|
// {
|
|
// let a := calldataload(0)
|
|
// let b := 20
|
|
// sstore(a, b)
|
|
// if calldataload(32)
|
|
// {
|
|
// pop(staticcall(0, 0, 0, 0, 0, 0))
|
|
// verbatim_0i_0o("xyz")
|
|
// }
|
|
// sstore(a, b)
|
|
// }
|