comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/replacements/SystemIdentityHashCodeNode.java @ 19403:61d3cb8e1280

Add generic parameter to NodeClass. Change Graph#getNodes(Class) to Graph#getNodes(NodeClass).
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 16 Feb 2015 17:47:43 +0100
parents 7e2c87dae93e
children 8fc336a04d77
comparison
equal deleted inserted replaced
19402:a16f1bbe2965 19403:61d3cb8e1280
32 import com.oracle.graal.replacements.nodes.*; 32 import com.oracle.graal.replacements.nodes.*;
33 33
34 @NodeInfo 34 @NodeInfo
35 public final class SystemIdentityHashCodeNode extends PureFunctionMacroNode { 35 public final class SystemIdentityHashCodeNode extends PureFunctionMacroNode {
36 36
37 public static final NodeClass TYPE = NodeClass.get(SystemIdentityHashCodeNode.class); 37 public static final NodeClass<SystemIdentityHashCodeNode> TYPE = NodeClass.get(SystemIdentityHashCodeNode.class);
38 38
39 public SystemIdentityHashCodeNode(Invoke invoke) { 39 public SystemIdentityHashCodeNode(Invoke invoke) {
40 super(TYPE, invoke); 40 super(TYPE, invoke);
41 } 41 }
42 42