diff graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2525:58e00fb82a3d

Removed CEEliminator (and two unused/unimplemented optimizations).
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 16:54:57 +0200
parents e7d14327e4ac
children 0b57dac65b27
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 16:50:17 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 16:54:57 2011 +0200
@@ -120,10 +120,6 @@
             new LivenessMarker(this).removeDeadCode();
             verifyAndPrint("After dead code elimination 1");
         }
-        if (C1XOptions.OptCEElimination) {
-            new CEEliminator(this);
-            verifyAndPrint("After CEE elimination");
-        }
         if (C1XOptions.OptBlockMerging) {
             new BlockMerger(this);
             verifyAndPrint("After block merging");