solidity/test/libyul/yulOptimizerTests/rematerialiser/large_constant_used_once.yul

14 lines
318 B
Plaintext
Raw Normal View History

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