mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
324 B
Plaintext
18 lines
324 B
Plaintext
{
|
|
let y := calldataload(0)
|
|
let x := calldataload(1)
|
|
let _1 := lt(x, y)
|
|
let _2 := not(x)
|
|
if and(_1, _2) { }
|
|
}
|
|
// ----
|
|
// step: reasoningBasedSimplifier
|
|
//
|
|
// {
|
|
// let y := calldataload(0)
|
|
// let x := calldataload(1)
|
|
// let _1 := lt(x, y)
|
|
// let _2 := not(x)
|
|
// if and(_1, _2) { }
|
|
// }
|