diff graal/GraalCompiler/src/com/sun/c1x/debug/CFGPrinter.java @ 2759:b72e6638b9e6

Removed the link from BlockBegin to LIRBlock.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Fri, 20 May 2011 16:40:32 +0200
parents 819a40e46826
children 2ac7b30b7290
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/debug/CFGPrinter.java	Fri May 20 16:31:31 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/debug/CFGPrinter.java	Fri May 20 16:40:32 2011 +0200
@@ -158,9 +158,10 @@
             printHIR(block);
         }
 
-        if (printLIR) {
-            printLIR(block.lirBlock());
-        }
+        // TODO(tw): Add possibility to print LIR.
+        //if (printLIR) {
+        //    printLIR(block.lirBlock());
+        //}
 
         end("block");
     }