changeset 2535:cc5443caae16

Remove useless C1XOptions.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 19:28:00 +0200
parents 4af63190ee3d
children 099f2a12788a
files graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java	Wed Apr 27 19:25:26 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java	Wed Apr 27 19:28:00 2011 +0200
@@ -84,17 +84,12 @@
     public static int     TraceBytecodeParserLevel           = 0;
     public static boolean PrintAssumptions                   = ____;
 
-    // IR checking
-    public static boolean InterpretInvokedMethods            = ____;
-    public static boolean PrintStateInInterpreter            = ____;
-
     // all optimization settings
     public static boolean OptLocalValueNumbering;
     public static boolean OptLocalLoadElimination;
     public static boolean OptCSEArrayLength;
     public static boolean OptBlockSkipping;
     public static boolean OptControlFlow;
-    public static boolean OptMoveElimination;
 
     // optimistic optimization settings
     public static boolean UseAssumptions                = true;
@@ -158,7 +153,6 @@
         OptLocalLoadElimination         = l;
         PhiLoopStores                   = l;
         OptControlFlow                  = l;
-        OptMoveElimination              = l;
 
         // Level 2 optimizations
         OptInline                       = ll;