mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 12:07:51 +00:00
committed by
Andreas Rumpf
parent
343ace8194
commit
b73d097d36
@@ -2160,7 +2160,7 @@ proc optimizeJumps(c: PCtx; start: int) =
|
||||
var d = i + c.code[i].jmpDiff
|
||||
for iters in countdown(maxIterations, 0):
|
||||
case c.code[d].opcode
|
||||
of opcJmp, opcJmpBack:
|
||||
of opcJmp:
|
||||
d = d + c.code[d].jmpDiff
|
||||
of opcTJmp, opcFJmp:
|
||||
if c.code[d].regA != reg: break
|
||||
|
||||
15
tests/vm/tmaxloopiterations.nim
Normal file
15
tests/vm/tmaxloopiterations.nim
Normal file
@@ -0,0 +1,15 @@
|
||||
discard """
|
||||
errormsg: "interpretation requires too many iterations; if you are sure this is not a bug in your code edit compiler/vmdef.MaxLoopIterations and rebuild the compiler"
|
||||
"""
|
||||
|
||||
# issue #9829
|
||||
|
||||
macro foo(): untyped =
|
||||
let lines = ["123", "5423"]
|
||||
var idx = 0
|
||||
while idx < lines.len():
|
||||
if lines[idx].len() < 1:
|
||||
inc(idx)
|
||||
continue
|
||||
|
||||
foo()
|
||||
Reference in New Issue
Block a user