diff graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2546:e1b3db8031ee

Removed liveness marking.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 21:54:31 +0200
parents eca17668badf
children 274360f98f97
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 21:38:22 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 21:54:31 2011 +0200
@@ -138,7 +138,7 @@
         if (!TTY.isSuppressed()) {
             TTY.println("IR for " + compilation.method);
             final InstructionPrinter ip = new InstructionPrinter(TTY.out());
-            final BlockPrinter bp = new BlockPrinter(this, ip, cfgOnly, false);
+            final BlockPrinter bp = new BlockPrinter(this, ip, cfgOnly);
             startBlock.iteratePreOrder(bp);
         }
     }