diff graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.java @ 2625:62ff4a70f07e

merge
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 10 May 2011 14:39:54 +0200
parents 8e44074058af 91d3952f7eb7
children 0f69be73d5ce
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.java	Tue May 10 14:29:40 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Instruction.java	Tue May 10 14:39:54 2011 +0200
@@ -237,10 +237,6 @@
      */
     public final void allValuesDo(ValueClosure closure) {
         inputValuesDo(closure);
-        FrameState stateBefore = stateBefore();
-        if (stateBefore != null) {
-            stateBefore.inputValuesDo(closure);
-        }
         FrameState stateAfter = stateAfter();
         if (stateAfter != null) {
             stateAfter.inputValuesDo(closure);
@@ -248,14 +244,6 @@
     }
 
     /**
-     * Gets the state before the instruction, if it is recorded.
-     * @return the state before the instruction
-     */
-    public FrameState stateBefore() {
-        return null;
-    }
-
-    /**
      * Gets the state after the instruction, if it is recorded. Typically only
      * instances of {@link BlockEnd} have a non-null state after.
      * @return the state after the instruction