diff options
author | cooldome <cdome@bk.ru> | 2019-03-20 13:01:07 +0000 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-03-20 14:01:07 +0100 |
commit | 7ba877914a0d0445b3041da03cbd62ae97c2ea58 (patch) | |
tree | 1ed03764da3bbd7a177644ed1c451cb207026fcf | |
parent | 54151ce3986d76313a5b77712f80e7739bb32dc0 (diff) | |
download | Nim-7ba877914a0d0445b3041da03cbd62ae97c2ea58.tar.gz |
increase VM limit (#10870)
-rw-r--r-- | compiler/vmdef.nim | 2 |
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 |