We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e68a3d commit ca29e6eCopy full SHA for ca29e6e
kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm.md
@@ -1349,10 +1349,10 @@ The various `CALL*` (and other inter-contract control flow) operations will be d
1349
rule #computeValidJumpDestsWithinBound(PGM, I, RESULT) => .Set
1350
1351
1352
- syntax Bool ::= #isValidJumpDest ( Bytes, Int ) [function, total]
+ syntax Bool ::= #isValidJumpDest(Bytes, Int) [function, total]
1353
1354
- rule #isValidJumpDest(PGM, I) => PGM [ I ] ==Int 91 requires 0 <=Int I andBool I <Int lengthBytes(PGM)
1355
- rule #isValidJumpDest(PGM, I) => false [owise]
+ rule #isValidJumpDest(PGM, I) => true requires PGM [ I ] ==Int 91
+ rule #isValidJumpDest(PGM, I) => false [owise]
1356
1357
rule
1358
```
0 commit comments