mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-16 16:14:20 +00:00
Fixed koch warning when installing Nim. (#6898)
This commit is contained in:
committed by
Andreas Rumpf
parent
28e0bf9dcd
commit
d3f966922e
@@ -382,9 +382,9 @@ proc dfa(code: seq[Instr]) =
|
||||
else:
|
||||
pc2 = pc + 1
|
||||
if code[pc].kind == fork:
|
||||
let l = pc + code[pc].dest
|
||||
if sid >= 0 and s[l].missingOrExcl(sid):
|
||||
w.add l
|
||||
let lidx = pc + code[pc].dest
|
||||
if sid >= 0 and s[lidx].missingOrExcl(sid):
|
||||
w.add lidx
|
||||
|
||||
if sid >= 0 and s[pc2].missingOrExcl(sid):
|
||||
pc = pc2
|
||||
|
||||
Reference in New Issue
Block a user