mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
280 B
Plaintext
17 lines
280 B
Plaintext
{
|
|
let x := sub(0, 7)
|
|
let y := 2
|
|
// (-7)/2 == -3 on the evm
|
|
if iszero(add(sdiv(x, y), 3)) { }
|
|
if iszero(add(sdiv(x, y), 4)) { }
|
|
}
|
|
// ----
|
|
// step: reasoningBasedSimplifier
|
|
//
|
|
// {
|
|
// let x := sub(0, 7)
|
|
// let y := 2
|
|
// if 1 { }
|
|
// if 0 { }
|
|
// }
|