diff graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java @ 2702:618f545fcac5

Removed control flow optimizer.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 18 May 2011 16:25:33 +0200
parents b179be22a3db
children 108adba3345e
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java	Wed May 18 16:09:55 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java	Wed May 18 16:25:33 2011 +0200
@@ -91,10 +91,6 @@
     public static boolean PrintAssumptions                   = ____;
     public static boolean QuietBailout                       = ____;
 
-    // all optimization settings
-    public static boolean OptBlockSkipping;
-    public static boolean OptControlFlow;
-
     // optimistic optimization settings
     public static boolean UseAssumptions                = true;
 
@@ -156,7 +152,6 @@
 
         // Level 1 optimizations
         PhiLoopStores                   = l;
-        OptControlFlow                  = l;
 
         // Level 2 optimizations
         OptInline                       = ll;
@@ -164,6 +159,5 @@
         // Level 3 optimizations
         UseStackMapTableLiveness        = lll;
         UseAssumptions                  = lll;
-        OptBlockSkipping                = lll;
     }
 }