diff graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.java @ 2635:0f69be73d5ce

More frame state fixes.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 11 May 2011 11:21:15 +0200
parents 62ff4a70f07e
children 7ed72769d51a
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.java	Wed May 11 10:52:37 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.java	Wed May 11 11:21:15 2011 +0200
@@ -237,10 +237,6 @@
      */
     public final void allValuesDo(ValueClosure closure) {
         inputValuesDo(closure);
-        FrameState stateAfter = stateAfter();
-        if (stateAfter != null) {
-            stateAfter.inputValuesDo(closure);
-        }
     }
 
     /**