comparison graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/ir/NewArray.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 6b841b6b2437
comparison
equal deleted inserted replaced
3493:faf60b7be40d 3494:82480cb4a51e
33 /** 33 /**
34 * The {@code NewArray} class is the base of all instructions that allocate arrays. 34 * The {@code NewArray} class is the base of all instructions that allocate arrays.
35 */ 35 */
36 public abstract class NewArray extends FixedNodeWithNext { 36 public abstract class NewArray extends FixedNodeWithNext {
37 37
38 @NodeInput 38 @Input private Value length;
39 private Value length;
40 39
41 public Value length() { 40 public Value length() {
42 return length; 41 return length;
43 } 42 }
44 43