# HG changeset patch # User Doug Simon # Date 1415802755 -3600 # Node ID 7c5bbe97b0d85c3ccb9c957f82aef7ade4d40899 # Parent 9a11c4086341e92d64df8daefc39e58bf79467c2 infer stamps for graphs checked in CheckGraalInvariants diff -r 9a11c4086341 -r 7c5bbe97b0d8 graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/CheckGraalInvariants.java --- a/graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/CheckGraalInvariants.java Wed Nov 12 15:13:51 2014 +0100 +++ b/graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/CheckGraalInvariants.java Wed Nov 12 15:32:35 2014 +0100 @@ -46,6 +46,7 @@ import com.oracle.graal.nodes.*; import com.oracle.graal.phases.*; import com.oracle.graal.phases.VerifyPhase.VerificationError; +import com.oracle.graal.phases.graph.*; import com.oracle.graal.phases.tiers.*; import com.oracle.graal.phases.util.*; import com.oracle.graal.phases.verify.*; @@ -200,6 +201,7 @@ * Checks the invariants for a single graph. */ private static void checkGraph(HighTierContext context, StructuredGraph graph, boolean verifyEquals) { + InferStamps.inferStamps(graph); if (verifyEquals) { new VerifyUsageWithEquals(Value.class).apply(graph, context); new VerifyUsageWithEquals(Register.class).apply(graph, context);