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