diff graal/GraalCompiler/src/com/sun/c1x/ir/NewInstance.java @ 2817:f9f40748442f

Made checkcast and instanceof floating.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Mon, 30 May 2011 15:34:30 +0200
parents 440ceca8e3d7
children 015be60afcf3
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/NewInstance.java	Mon May 30 15:28:38 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/NewInstance.java	Mon May 30 15:34:30 2011 +0200
@@ -30,7 +30,7 @@
 /**
  * The {@code NewInstance} instruction represents the allocation of an instance class object.
  */
-public final class NewInstance extends StateSplit {
+public final class NewInstance extends Value {
 
     private static final int INPUT_COUNT = 0;
     private static final int SUCCESSOR_COUNT = 0;
@@ -81,9 +81,4 @@
     public void print(LogStream out) {
         out.print("new instance ").print(CiUtil.toJavaName(instanceClass()));
     }
-
-    @Override
-    public boolean needsStateAfter() {
-        return false;
-    }
 }