mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
266 B
Plaintext
11 lines
266 B
Plaintext
{
|
|
let a := add(mul(calldatasize(), 2), number())
|
|
let b := add(a, a)
|
|
}
|
|
// ----
|
|
// rematerialiser
|
|
// {
|
|
// let a := add(mul(calldatasize(), 2), number())
|
|
// let b := add(add(mul(calldatasize(), 2), number()), add(mul(calldatasize(), 2), number()))
|
|
// }
|