diff graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java @ 2526:0b57dac65b27

Removed block merger.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 16:56:33 +0200
parents 58e00fb82a3d
children 15936867feb5
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java	Wed Apr 27 16:54:57 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/C1XOptions.java	Wed Apr 27 16:56:33 2011 +0200
@@ -107,7 +107,6 @@
     public static boolean OptLocalLoadElimination;
     public static boolean OptCSEArrayLength;
     public static boolean OptGlobalValueNumbering;
-    public static boolean OptBlockMerging;
     public static boolean OptBlockSkipping;
     public static boolean OptIterativeNCE;
     public static boolean OptFlowSensitiveNCE;
@@ -184,7 +183,6 @@
 
         // Level 2 optimizations
         OptInline                       = ll;
-        OptBlockMerging                 = ll;
 
         // Level 3 optimizations
         OptCSEArrayLength               = lll;