diff graal/GraalCompiler/src/com/sun/c1x/debug/CFGPrinter.java @ 2726:819a40e46826

Clean up
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 17:02:12 +0200
parents 173067211acb
children b72e6638b9e6
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/debug/CFGPrinter.java	Thu May 19 16:56:05 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/debug/CFGPrinter.java	Thu May 19 17:02:12 2011 +0200
@@ -159,7 +159,7 @@
         }
 
         if (printLIR) {
-            printLIR(block);
+            printLIR(block.lirBlock());
         }
 
         end("block");
@@ -465,7 +465,7 @@
      *
      * @param block the block to print
      */
-    private void printLIR(BlockBegin block) {
+    private void printLIR(LIRBlock block) {
         LIRList lir = block.lir();
         if (lir != null) {
             begin("IR");