# HG changeset patch # User Lukas Stadler # Date 1401444829 -7200 # Node ID ce09739483c9a260314b1d178f64b495e2a4baff # Parent 73a0c8e14cd1af7e50e1c5020f03b7009b7d7c07 fix typo in InlineableGraph diff -r 73a0c8e14cd1 -r ce09739483c9 graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/inlining/info/elem/InlineableGraph.java --- a/graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/inlining/info/elem/InlineableGraph.java Thu May 29 11:20:10 2014 -0700 +++ b/graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/inlining/info/elem/InlineableGraph.java Fri May 30 12:13:49 2014 +0200 @@ -125,7 +125,7 @@ if (context.getGraphBuilderSuite() != null) { context.getGraphBuilderSuite().apply(newGraph, context); } - assert newGraph.start().next() != null : "graph needs to be populated the GraphBuilderSuite"; + assert newGraph.start().next() != null : "graph needs to be populated by the GraphBuilderSuite"; new DeadCodeEliminationPhase().apply(newGraph);