diff graal/GraalCompiler/src/com/sun/c1x/lir/LIRList.java @ 2716:c1a9bf38da28

Removed bci from the Instruction class.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 13:59:55 +0200
parents 4272b7af2d17
children c1ce2a53d6c3
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/lir/LIRList.java	Thu May 19 13:21:31 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/lir/LIRList.java	Thu May 19 13:59:55 2011 +0200
@@ -390,7 +390,6 @@
 
     public static void printBlock(BlockBegin x) {
         // print block id
-        BlockEnd end = x.end();
         TTY.print("B%d ", x.blockID);
 
         // print flags
@@ -402,7 +401,7 @@
         }
 
         // print block bci range
-        TTY.print("[%d, %d] ", x.bci(), (end == null ? -1 : end.bci()));
+        TTY.print("[%d, %d] ", -1, -1);
 
         // print predecessors and successors
         if (x.numberOfPreds() > 0) {