changeset 32568:58c1f4c52e83 bytecode-interpreter

enable bytecode interpreter default * compile.cc (V__vm_enable__): Initialize to true.
author John W. Eaton <jwe@octave.org>
date Sun, 10 Dec 2023 07:33:26 -0500
parents 8a87db42c2c2
children 065ae9845ce8
files libinterp/corefcn/compile.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/compile.cc	Sun Dec 10 12:36:35 2023 +0100
+++ b/libinterp/corefcn/compile.cc	Sun Dec 10 07:33:26 2023 -0500
@@ -43,7 +43,7 @@
 #if defined (OCTAVE_ENABLE_BYTECODE_EVALUATOR)
 
 // If TRUE, use VM evaluator rather than tree walker.
-bool V__vm_enable__ = false;
+bool V__vm_enable__ = true;
 
 // Cleverly hidden in pt-bytecode-vm.cc to prevent inlining here
 extern "C" void dummy_mark_1 (void);