summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorcooldome <cdome@bk.ru>2019-03-20 13:01:07 +0000
committerAndreas Rumpf <rumpf_a@web.de>2019-03-20 14:01:07 +0100
commit7ba877914a0d0445b3041da03cbd62ae97c2ea58 (patch)
tree1ed03764da3bbd7a177644ed1c451cb207026fcf
parent54151ce3986d76313a5b77712f80e7739bb32dc0 (diff)
downloadNim-7ba877914a0d0445b3041da03cbd62ae97c2ea58.tar.gz
increase VM limit (#10870)
-rw-r--r--compiler/vmdef.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/vmdef.nim b/compiler/vmdef.nim
index 6099bfb9f..608f20526 100644
--- a/compiler/vmdef.nim
+++ b/compiler/vmdef.nim
@@ -17,7 +17,7 @@ const
   byteExcess* = 128 # we use excess-K for immediates
   wordExcess* = 32768
 
-  MaxLoopIterations* = 3_000_000 # max iterations of all loops
+  MaxLoopIterations* = 10_000_000 # max iterations of all loops
 
 
 type