comparison 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
comparison
equal deleted inserted replaced
2715:3ac3dd97d8df 2716:c1a9bf38da28
116 block.printWithoutPhis(TTY.out()); 116 block.printWithoutPhis(TTY.out());
117 } 117 }
118 118
119 assert block.lir() != null : "must have LIR"; 119 assert block.lir() != null : "must have LIR";
120 if (C1XOptions.CommentedAssembly) { 120 if (C1XOptions.CommentedAssembly) {
121 String st = String.format(" block B%d [%d, %d]", block.blockID, block.bci(), block.end().bci()); 121 String st = String.format(" block B%d", block.blockID);
122 tasm.blockComment(st); 122 tasm.blockComment(st);
123 } 123 }
124 124
125 emitLirList(block.lir()); 125 emitLirList(block.lir());
126 } 126 }