solidity/test/libyul/yulOptimizerTests/fullSimplify/invariant.yul
Daniel Kirchner 10618188dd Update tests.
2021-11-09 14:34:05 +01:00

21 lines
450 B
Plaintext

{
let a := calldataload(sub(7, 7))
let b := sub(a, 0)
// Below, `b` is not eliminated, because
// we run CSE and then Simplify.
// Elimination of `b` would require another
// run of CSE afterwards.
mstore(b, eq(calldataload(0), a))
}
// ----
// step: fullSimplify
//
// {
// {
// let a := calldataload(0)
// let _4 := 0
// let b := a
// mstore(b, eq(calldataload(_4), a))
// }
// }