mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
285 B
Plaintext
16 lines
285 B
Plaintext
{
|
|
// This does not replace b by a because there is no
|
|
// explicit assignment, even though both hold the same value.
|
|
let a
|
|
let b
|
|
mstore(sub(a, b), 7)
|
|
}
|
|
// ----
|
|
// step: commonSubexpressionEliminator
|
|
//
|
|
// {
|
|
// let a
|
|
// let b
|
|
// mstore(sub(a, b), 7)
|
|
// }
|