diff graal/GraalCompiler/src/com/sun/c1x/debug/InstructionPrinter.java @ 2622:91d3952f7eb7

Framestate work : using stateAFter and reducting the number of nodes with framestates. Intermediate state (does not pass tests)
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Tue, 10 May 2011 12:37:46 +0200
parents e1b3db8031ee
children c1a9bf38da28
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/debug/InstructionPrinter.java	Tue May 10 11:55:12 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/debug/InstructionPrinter.java	Tue May 10 12:37:46 2011 +0200
@@ -143,7 +143,7 @@
             out.print("  [flags: " + flags + "]");
         }
         if (instruction instanceof StateSplit) {
-            out.print("  [state: " + ((StateSplit) instruction).stateBefore() + "]");
+            out.print("  [state: " + ((StateSplit) instruction).stateAfter() + "]");
         }
         out.println();
     }