aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests/fullSimplify/identity_rules_negative.yul
blob: a1737eface5edc2ff4af5014495b86e9284f22a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
    let a := sub(calldataload(1), calldataload(0))
    mstore(0, a)
}
// ----
// fullSimplify
// {
//     let _1 := 0
//     mstore(_1, sub(calldataload(1), calldataload(_1)))
// }