# HG changeset patch # User Thomas Wuerthinger # Date 1424102869 -3600 # Node ID c2dcc65a2a6819c889c21c1347115afc78bc6ecb # Parent eb091eb273f4d3e90cb02fd8a86aa48f59eaa6ae More node type fixes. diff -r eb091eb273f4 -r c2dcc65a2a68 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1ArrayRangePostWriteBarrier.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1ArrayRangePostWriteBarrier.java Mon Feb 16 17:02:56 2015 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1ArrayRangePostWriteBarrier.java Mon Feb 16 17:07:49 2015 +0100 @@ -31,7 +31,7 @@ public static final NodeClass TYPE = NodeClass.get(G1ArrayRangePostWriteBarrier.class); public G1ArrayRangePostWriteBarrier(ValueNode object, ValueNode startIndex, ValueNode length) { - super(object, startIndex, length); + super(TYPE, object, startIndex, length); } } diff -r eb091eb273f4 -r c2dcc65a2a68 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1ArrayRangePreWriteBarrier.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1ArrayRangePreWriteBarrier.java Mon Feb 16 17:02:56 2015 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1ArrayRangePreWriteBarrier.java Mon Feb 16 17:07:49 2015 +0100 @@ -31,7 +31,7 @@ public static final NodeClass TYPE = NodeClass.get(G1ArrayRangePreWriteBarrier.class); public G1ArrayRangePreWriteBarrier(ValueNode object, ValueNode startIndex, ValueNode length) { - super(object, startIndex, length); + super(TYPE, object, startIndex, length); } }