diff 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
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/Value.java	Thu May 19 13:21:31 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Value.java	Thu May 19 13:59:55 2011 +0200
@@ -273,10 +273,6 @@
             builder.append(' ');
         }
         builder.append(getClass().getSimpleName());
-        if (this instanceof Instruction) {
-            builder.append(" @ ");
-            builder.append(((Instruction) this).bci());
-        }
         builder.append(" [").append(flagsToString()).append("]");
         return builder.toString();
     }