# HG changeset patch # User Doug Simon # Date 1363807420 -3600 # Node ID 3f6a028deb5f36dbca8933ccd76fb752bdace558 # Parent e996a732c740ff1ae192f494bcdc42609d588b05 comment fix diff -r e996a732c740 -r 3f6a028deb5f graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationTask.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationTask.java Wed Mar 20 20:23:23 2013 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompilationTask.java Wed Mar 20 20:23:40 2013 +0100 @@ -142,7 +142,7 @@ if (graph == null || entryBCI != INVOCATION_ENTRY_BCI) { graph = new StructuredGraph(method, entryBCI); } else { - // Compiling an intrinsic graph - must clone the graph + // Compiling method substitution - must clone the graph graph = graph.copy(); } InlinedBytecodes.add(method.getCodeSize());