Skip to content

Commit cc119bb

Browse files
Underscore unused variables
1 parent 3335748 commit cc119bb

File tree

1 file changed

+5
-5
lines changed
  • kevm-pyk/src/kevm_pyk/kproj/evm-semantics

1 file changed

+5
-5
lines changed

kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1340,19 +1340,19 @@ The various `CALL*` (and other inter-contract control flow) operations will be d
13401340
syntax Set ::= #computeValidJumpDests(Bytes) [function, memo, total]
13411341
| #computeValidJumpDests(Bytes, Int, List) [function, klabel(#computeValidJumpDestsAux)]
13421342
// -----------------------------------------------------------------------------------------------------
1343-
rule #computeValidJumpDests(PGM) => .Set
1344-
rule #computeValidJumpDests(PGM, I, RESULT) => .Set
1343+
rule #computeValidJumpDests(_PGM) => .Set
1344+
rule #computeValidJumpDests(_PGM, _I, _RESULT) => .Set
13451345
13461346
13471347
syntax Set ::= #computeValidJumpDestsWithinBound(Bytes, Int, List) [function]
13481348
// -----------------------------------------------------------------------------
1349-
rule #computeValidJumpDestsWithinBound(PGM, I, RESULT) => .Set
1349+
rule #computeValidJumpDestsWithinBound(_PGM, _I, _RESULT) => .Set
13501350
13511351
13521352
syntax Bool ::= #isValidJumpDest(Bytes, Int) [function, total]
13531353
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]
13561356
13571357
```
13581358

0 commit comments

Comments
 (0)