diff graal/GraalCompiler/src/com/sun/c1x/lir/LIRAssembler.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/LIRAssembler.java	Thu May 19 13:21:31 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/lir/LIRAssembler.java	Thu May 19 13:59:55 2011 +0200
@@ -118,7 +118,7 @@
 
         assert block.lir() != null : "must have LIR";
         if (C1XOptions.CommentedAssembly) {
-            String st = String.format(" block B%d [%d, %d]", block.blockID, block.bci(), block.end().bci());
+            String st = String.format(" block B%d", block.blockID);
             tasm.blockComment(st);
         }