comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/StartNode.java @ 17450:45b45f902bed

removed Node generation (GRAAL-857)
author Doug Simon <doug.simon@oracle.com>
date Wed, 15 Oct 2014 15:35:33 +0200
parents 9eb112c9337d
children f57d86eb036f
comparison
equal deleted inserted replaced
17449:cca154b1bf91 17450:45b45f902bed
30 * The start node of a graph. 30 * The start node of a graph.
31 */ 31 */
32 @NodeInfo(allowedUsageTypes = {InputType.Memory}) 32 @NodeInfo(allowedUsageTypes = {InputType.Memory})
33 public class StartNode extends BeginStateSplitNode implements MemoryCheckpoint.Single { 33 public class StartNode extends BeginStateSplitNode implements MemoryCheckpoint.Single {
34 public static StartNode create() { 34 public static StartNode create() {
35 return USE_GENERATED_NODES ? new StartNodeGen() : new StartNode(); 35 return new StartNode();
36 } 36 }
37 37
38 protected StartNode() { 38 protected StartNode() {
39 } 39 }
40 40