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

14 lines
267 B
Plaintext
Raw Normal View History

{
// Constants cost depending on their magnitude.
// Do not rematerialize large constants.
let a := 0xffffffffffffffffffffff
mstore(a, a)
}
2019-04-01 14:33:46 +00:00
// ====
// step: rematerialiser
// ----
// {
// let a := 0xffffffffffffffffffffff
// mstore(a, a)
// }