comparison graal/GraalCompiler/src/com/sun/c1x/ir/Value.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 d06cff53b77e
children d3fc4fe063bf
comparison
equal deleted inserted replaced
2715:3ac3dd97d8df 2716:c1a9bf38da28
271 builder.append(' '); 271 builder.append(' ');
272 if (id() < 10) { 272 if (id() < 10) {
273 builder.append(' '); 273 builder.append(' ');
274 } 274 }
275 builder.append(getClass().getSimpleName()); 275 builder.append(getClass().getSimpleName());
276 if (this instanceof Instruction) {
277 builder.append(" @ ");
278 builder.append(((Instruction) this).bci());
279 }
280 builder.append(" [").append(flagsToString()).append("]"); 276 builder.append(" [").append(flagsToString()).append("]");
281 return builder.toString(); 277 return builder.toString();
282 } 278 }
283 279
284 public String flagsToString() { 280 public String flagsToString() {