diff graal/GraalCompiler/src/com/sun/c1x/ir/NewInstance.java @ 2656:37f067e76c6f

Removed need for state after on load indexed, and new bytecodes.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 11 May 2011 15:23:07 +0200
parents 4dd0573f510b
children 440ceca8e3d7
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/NewInstance.java	Wed May 11 15:16:43 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/NewInstance.java	Wed May 11 15:23:07 2011 +0200
@@ -86,4 +86,9 @@
     public void print(LogStream out) {
         out.print("new instance ").print(CiUtil.toJavaName(instanceClass()));
     }
+
+    @Override
+    public boolean needsStateAfter() {
+        return false;
+    }
 }