comparison 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
comparison
equal deleted inserted replaced
2758:0c5791bc90fb 2759:b72e6638b9e6
156 if (printHIR) { 156 if (printHIR) {
157 printState(block); 157 printState(block);
158 printHIR(block); 158 printHIR(block);
159 } 159 }
160 160
161 if (printLIR) { 161 // TODO(tw): Add possibility to print LIR.
162 printLIR(block.lirBlock()); 162 //if (printLIR) {
163 } 163 // printLIR(block.lirBlock());
164 //}
164 165
165 end("block"); 166 end("block");
166 } 167 }
167 168
168 /** 169 /**