mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #11510 from ethereum/removeNondeterministicTest
Remove potentially non-deterministic test case.
This commit is contained in:
commit
98e7b61a37
@ -1,36 +0,0 @@
|
|||||||
{
|
|
||||||
let x := calldataload(0)
|
|
||||||
let y := calldataload(32)
|
|
||||||
let z := calldataload(64)
|
|
||||||
let result := addmod(x, y, z)
|
|
||||||
|
|
||||||
// should be zero
|
|
||||||
if gt(result, z) { sstore(0, 1) }
|
|
||||||
|
|
||||||
// addmod is equal to mod of sum for small numbers
|
|
||||||
if and(and(lt(x, 1000), lt(y, 1000)), lt(z, 1000)) {
|
|
||||||
// z3 <4.8.10 was able to infer that the
|
|
||||||
// condition below is always true.
|
|
||||||
if eq(result, mod(add(x, y), z)) { sstore(0, 9) }
|
|
||||||
}
|
|
||||||
|
|
||||||
// but not in general
|
|
||||||
if and(and(gt(x, sub(0, 5)), gt(y, sub(0, 2))), eq(z, 3)) {
|
|
||||||
if eq(result, mod(add(x, y), z)) { sstore(0, 5) }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// ----
|
|
||||||
// step: reasoningBasedSimplifier
|
|
||||||
//
|
|
||||||
// {
|
|
||||||
// let x := calldataload(0)
|
|
||||||
// let y := calldataload(32)
|
|
||||||
// let z := calldataload(64)
|
|
||||||
// let result := addmod(x, y, z)
|
|
||||||
// if 0 { }
|
|
||||||
// if and(and(lt(x, 1000), lt(y, 1000)), lt(z, 1000))
|
|
||||||
// {
|
|
||||||
// if eq(result, mod(add(x, y), z)) { sstore(0, 9) }
|
|
||||||
// }
|
|
||||||
// if and(and(gt(x, sub(0, 5)), gt(y, sub(0, 2))), eq(z, 3)) { if 0 { } }
|
|
||||||
// }
|
|
Loading…
Reference in New Issue
Block a user