diff graal/GraalCompiler/src/com/sun/c1x/debug/InstructionPrinter.java @ 2546:e1b3db8031ee

Removed liveness marking.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 21:54:31 +0200
parents 16b9a8b5ad39
children 91d3952f7eb7
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/debug/InstructionPrinter.java	Wed Apr 27 21:38:22 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/debug/InstructionPrinter.java	Wed Apr 27 21:54:31 2011 +0200
@@ -129,10 +129,6 @@
      * @param instruction the instruction to print
      */
     public void printInstructionListing(Value instruction) {
-        if (instruction.isLive()) {
-            out.print('.');
-        }
-
         int indentation = out.indentationLevel();
         out.fillTo(BCI.position + indentation, ' ').
              print(instruction instanceof Instruction ? ((Instruction) instruction).bci() : 0).