diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/vm/settings.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/vm/settings.go b/core/vm/settings.go index b94efd9ab..0cd931b6a 100644 --- a/core/vm/settings.go +++ b/core/vm/settings.go @@ -17,9 +17,9 @@ package vm var ( - DisableJit bool // Disable the JIT VM - ForceJit bool // Force the JIT, skip byte VM - MaxProgSize int // Max cache size for JIT Programs + DisableJit bool = true // Disable the JIT VM + ForceJit bool // Force the JIT, skip byte VM + MaxProgSize int // Max cache size for JIT Programs ) const defaultJitMaxCache int = 64 |