mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
262 B
Plaintext
14 lines
262 B
Plaintext
{
|
|
// Constants cost depending on their magnitude.
|
|
// Do not rematerialize large constants.
|
|
let a := 0xffffffffffffffffffffff
|
|
mstore(a, a)
|
|
}
|
|
// ----
|
|
// step: rematerialiser
|
|
//
|
|
// {
|
|
// let a := 0xffffffffffffffffffffff
|
|
// mstore(a, a)
|
|
// }
|