diff graal/GraalCompiler/src/com/sun/c1x/ir/If.java @ 2581:4a36a0bd6d18

added GraalGraph to classpath, Node as superclass of Value
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 05 May 2011 13:27:48 +0200
parents 4a016ff4d2df
children 0c6564c254af
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/If.java	Wed May 04 18:57:26 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/If.java	Thu May 05 13:27:48 2011 +0200
@@ -171,9 +171,9 @@
         print(' ').
         print(y()).
         print(" then B").
-        print(successors().get(0).blockID).
+        print(blockSuccessors().get(0).blockID).
         print(" else B").
-        print(successors().get(1).blockID);
+        print(blockSuccessors().get(1).blockID);
         if (isSafepoint()) {
             out.print(" (safepoint)");
         }