Patch for concurrent iterator & others (onto v1.11.6) #386
@ -76,7 +76,7 @@ func codeBitmapInternal(code, bits bitvec) bitvec {
|
|||||||
for pc := uint64(0); pc < uint64(len(code)); {
|
for pc := uint64(0); pc < uint64(len(code)); {
|
||||||
op := OpCode(code[pc])
|
op := OpCode(code[pc])
|
||||||
pc++
|
pc++
|
||||||
if op < PUSH1 || op > PUSH32 {
|
if int8(op) < int8(PUSH1) { // If not PUSH (the int8(op) > int(PUSH32) is always false).
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
numbits := op - PUSH1 + 1
|
numbits := op - PUSH1 + 1
|
||||||
|
Loading…
Reference in New Issue
Block a user