diff graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/ir/Anchor.java @ 3494:82480cb4a51e

Renamed NodeInput=>Input and NodeSuccessor=>Successor and made them inner classes of Node.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Sun, 07 Aug 2011 16:28:10 +0200
parents 2423a432fa6b
children 9b59afa78775
line wrap: on
line diff
--- a/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/ir/Anchor.java	Sun Aug 07 16:11:40 2011 +0200
+++ b/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/ir/Anchor.java	Sun Aug 07 16:28:10 2011 +0200
@@ -33,8 +33,7 @@
  */
 public final class Anchor extends FixedNodeWithNext {
 
-    @NodeInput
-    private final NodeInputList<GuardNode> guards = new NodeInputList<GuardNode>(this);
+    @Input    private final NodeInputList<GuardNode> guards = new NodeInputList<GuardNode>(this);
 
     /**
      * Constructs a new Anchor instruction.