diff graal/GraalCompiler/src/com/sun/c1x/debug/BlockPrinter.java @ 2611:bd235cb4375a

FrameState cleanup: split into FrameStateBuilder and fixed-size FrameState, removed MutableFrameState
author Lukas Stadler <lukas.stadler@jku.at>
date Fri, 06 May 2011 17:08:00 +0200
parents 274360f98f97
children d3fc4fe063bf
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/debug/BlockPrinter.java	Fri May 06 13:03:33 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/debug/BlockPrinter.java	Fri May 06 17:08:00 2011 +0200
@@ -67,7 +67,7 @@
 
     private static void printFrameState(FrameState newFrameState, LogStream out) {
         int startPosition = out.position();
-        if (newFrameState.stackEmpty()) {
+        if (newFrameState.stackSize() == 0) {
           out.print("empty stack");
         } else {
           out.print("stack [");