* opt_no_dynamic: Added.
authoranton <none@none>
Wed, 7 Dec 2005 16:08:52 +0000 (16:08 +0000)
committeranton <none@none>
Wed, 7 Dec 2005 16:08:52 +0000 (16:08 +0000)
src/vm/options.c
src/vm/options.h

index db7837d3731dec1c42a7eb1ad4fa7e6498e6e60a..18abc2dc21415213037065d67b992e3b0b6b998b 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes:
 
-   $Id: options.c 3375 2005-10-06 13:12:02Z twisti $
+   $Id: options.c 3899 2005-12-07 16:08:52Z anton $
 
 */
 
@@ -114,6 +114,10 @@ bool opt_eager = false;
 bool opt_lsra = false;
 #endif
 
+/* interpreter options ********************************************************/
+
+bool opt_no_dynamic = false;   /* suppress dynamic superinstructions          */
+
 s4 opt_static_supers = 0x7fffffff;
 bool vm_debug = false;          /* XXX this should be called `opt_trace'      */
 
index 28d9ca0be3ce89e02ccc11cc86e6224effd1f9a9..7ca9a6faf89704a68970c44958427981e84c1c63 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes:
 
-   $Id: options.h 3375 2005-10-06 13:12:02Z twisti $
+   $Id: options.h 3899 2005-12-07 16:08:52Z anton $
 
 */
 
@@ -126,7 +126,10 @@ extern bool opt_eager;
 extern bool opt_lsra;
 #endif
 
-extern s4 opt_static_supers;
+/* interpreter options ********************************************************/
+
+extern bool opt_no_dynamic;
+extern s4   opt_static_supers;
 extern bool vm_debug;