diff options
author | Araq <rumpf_a@web.de> | 2015-02-01 11:58:24 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-02-01 11:58:41 +0100 |
commit | 903ca78289dc0460e07bd449a972a4d203d9a09b (patch) | |
tree | 71ead133004e19aba148bc4ce8e18022dc122825 /compiler/vmdef.nim | |
parent | a6082b2a2013a38ec78a07a62cd04b535689aff4 (diff) | |
download | Nim-903ca78289dc0460e07bd449a972a4d203d9a09b.tar.gz |
fixes #1989
Diffstat (limited to 'compiler/vmdef.nim')
-rw-r--r-- | compiler/vmdef.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/vmdef.nim b/compiler/vmdef.nim index 3d49cb130..90b9f2517 100644 --- a/compiler/vmdef.nim +++ b/compiler/vmdef.nim @@ -213,6 +213,7 @@ proc newCtx*(module: PSym): PCtx = proc refresh*(c: PCtx, module: PSym) = c.module = module c.prc = PProc(blocks: @[]) + c.loopIterations = MaxLoopIterations proc registerCallback*(c: PCtx; name: string; callback: VmCallback) = c.callbacks.add((name, callback)) |