changeset 15980:ce09739483c9

fix typo in InlineableGraph
author Lukas Stadler <lukas.stadler@oracle.com>
date Fri, 30 May 2014 12:13:49 +0200
parents 73a0c8e14cd1
children 5eadeec42668
files graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/inlining/info/elem/InlineableGraph.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);