diff graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2524:e7d14327e4ac

Removed null check eliminator.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 16:50:17 +0200
parents 268b8eb84b6e
children 58e00fb82a3d
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 16:48:23 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 16:50:17 2011 +0200
@@ -116,10 +116,6 @@
             new PhiSimplifier(this);
             verifyAndPrint("After phi simplification");
         }
-        if (C1XOptions.OptNullCheckElimination) {
-            new NullCheckEliminator(this);
-            verifyAndPrint("After null check elimination");
-        }
         if (C1XOptions.OptDeadCodeElimination1) {
             new LivenessMarker(this).removeDeadCode();
             verifyAndPrint("After dead code elimination 1");