solidity/test/libyul/yulOptimizerTests/rematerialiser/large_constant_used_once.yul
2019-04-03 14:58:20 +02:00

15 lines
332 B
Plaintext

{
// Constants cost depending on their magnitude.
// Do not rematerialize large constants,
// unless they are used exactly once.
let a := 0xffffffffffffffffffffff
mstore(0, a)
}
// ====
// step: rematerialiser
// ----
// {
// let a := 0xffffffffffffffffffffff
// mstore(0, 0xffffffffffffffffffffff)
// }