change the VM's max instruction count to 3_000_000

This commit is contained in:
Andreas Rumpf
2018-08-10 08:42:13 +02:00
parent 265003df1a
commit 864d24d70e
2 changed files with 2 additions and 2 deletions

View File

@@ -185,7 +185,7 @@
### Compiler changes
- The VM's instruction count limit was raised to 1 billion instructions in
- The VM's instruction count limit was raised to 3 million instructions in
order to support more complex computations at compile-time.
- Support for hot code reloading has been implemented for the JavaScript

View File

@@ -17,7 +17,7 @@ const
byteExcess* = 128 # we use excess-K for immediates
wordExcess* = 32768
MaxLoopIterations* = 1_000_000_000 # max iterations of all loops
MaxLoopIterations* = 3_000_000 # max iterations of all loops
type