diff graal/GraalCompiler/src/com/sun/c1x/gen/PhiSimplifier.java @ 2772:3e3338a1abb9

Disabled dead phi elimination and phi simplifier.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 24 May 2011 10:27:15 +0200
parents 99912abb3ff7
children 398b8fa5dc81
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/gen/PhiSimplifier.java	Tue May 24 09:49:04 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/gen/PhiSimplifier.java	Tue May 24 10:27:15 2011 +0200
@@ -31,12 +31,12 @@
  */
 public final class PhiSimplifier {
 
-    public PhiSimplifier(IR ir) {
+    public PhiSimplifier(IR ir) {/*
         for (Node n : ir.compilation.graph.getNodes()) {
             if (n instanceof Phi) {
                 simplify((Phi) n);
             }
-        }
+        }*/
     }
 
     private Value simplify(Value x) {