@@ -1340,19 +1340,19 @@ The various `CALL*` (and other inter-contract control flow) operations will be d
1340
1340
syntax Set ::= #computeValidJumpDests(Bytes) [function, memo, total]
1341
1341
| #computeValidJumpDests(Bytes, Int, List) [function, klabel(#computeValidJumpDestsAux)]
1342
1342
// -----------------------------------------------------------------------------------------------------
1343
- rule #computeValidJumpDests(PGM ) => .Set
1344
- rule #computeValidJumpDests(PGM, I, RESULT ) => .Set
1343
+ rule #computeValidJumpDests(_PGM ) => .Set
1344
+ rule #computeValidJumpDests(_PGM, _I, _RESULT ) => .Set
1345
1345
1346
1346
1347
1347
syntax Set ::= #computeValidJumpDestsWithinBound(Bytes, Int, List) [function]
1348
1348
// -----------------------------------------------------------------------------
1349
- rule #computeValidJumpDestsWithinBound(PGM, I, RESULT ) => .Set
1349
+ rule #computeValidJumpDestsWithinBound(_PGM, _I, _RESULT ) => .Set
1350
1350
1351
1351
1352
1352
syntax Bool ::= #isValidJumpDest(Bytes, Int) [function, total]
1353
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]
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]
1356
1356
1357
1357
```
1358
1358
0 commit comments