mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
232 B
Plaintext
19 lines
232 B
Plaintext
|
{
|
||
|
let a := mload(0)
|
||
|
if mload(1)
|
||
|
{
|
||
|
a := mload(1)
|
||
|
}
|
||
|
mstore(a, 0)
|
||
|
}
|
||
|
// ----
|
||
|
// ssaAndBack
|
||
|
// {
|
||
|
// let a := mload(0)
|
||
|
// if mload(1)
|
||
|
// {
|
||
|
// a := mload(1)
|
||
|
// }
|
||
|
// mstore(a, 0)
|
||
|
// }
|