mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
change the VM's max instruction count to 3_000_000
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user