File tree Expand file tree Collapse file tree
kevm-pyk/src/kevm_pyk/kproj/evm-semantics Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ The `#next [_]` operator initiates execution by:
389389 rule #stackUnderflow( _W0 : _W1 : _W2 : _W3 : _WS , _QOP:QuadStackOp ) => false
390390 rule #stackUnderflow( _W0 : _W1 : _W2 : _W3 : _W4 : _W5 : _W6 : _WS , _CSOP:CallSixOp ) => false
391391 rule #stackUnderflow( _W0 : _W1 : _W2 : _W3 : _W4 : _W5 : _W6 : _W7 : _WS , COP:CallOp ) => false requires notBool isCallSixOp(COP)
392- rule #stackUnderflow(WS, _POP :OpCode) => #sizeWordStack(WS) <Int #stackNeeded(OP) [owise]
392+ rule #stackUnderflow(WS, OP :OpCode) => #sizeWordStack(WS) <Int #stackNeeded(OP) [owise]
393393
394394 rule #stackOverflow(_WS, OP) => false requires #stackDelta(OP) <=Int 0
395395 rule #stackOverflow(WS, OP) => 1024 <Int #sizeWordStack(WS) +Int #stackDelta(OP) [owise]
You can’t perform that action at this time.
0 commit comments