comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/InvokeNode.java @ 5540:a891c53a295b

Renaming RiKind => Kind.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 08 Jun 2012 23:47:42 +0200
parents 816fb2492760
children b6617d13ea44
comparison
equal deleted inserted replaced
5539:bc647d8b0080 5540:a891c53a295b
140 if (node instanceof StateSplit) { 140 if (node instanceof StateSplit) {
141 StateSplit stateSplit = (StateSplit) node; 141 StateSplit stateSplit = (StateSplit) node;
142 stateSplit.setStateAfter(stateAfter); 142 stateSplit.setStateAfter(stateAfter);
143 } 143 }
144 if (node == null) { 144 if (node == null) {
145 assert kind() == RiKind.Void && usages().isEmpty(); 145 assert kind() == Kind.Void && usages().isEmpty();
146 ((StructuredGraph) graph()).removeFixed(this); 146 ((StructuredGraph) graph()).removeFixed(this);
147 } else { 147 } else {
148 if (node instanceof FixedWithNextNode) { 148 if (node instanceof FixedWithNextNode) {
149 ((StructuredGraph) graph()).replaceFixedWithFixed(this, (FixedWithNextNode) node); 149 ((StructuredGraph) graph()).replaceFixedWithFixed(this, (FixedWithNextNode) node);
150 } else if (node instanceof DeoptimizeNode) { 150 } else if (node instanceof DeoptimizeNode) {