Commit 7fa982e5 by Marcin Dalecki Committed by Marcin Dalecki

cgraphunit.c (cgraph_optimize): Fixed obvious thinko in memory consumption reporting.

2006-12-23  Marcin Dalecki  <martin@dalecki.de>

       * cgraphunit.c (cgraph_optimize): Fixed obvious thinko in memory
       consumption reporting.

From-SVN: r120174
parent cb4af25a
2006-12-23 Marcin Dalecki <martin@dalecki.de>
* cgraphunit.c (cgraph_optimize): Fixed obvious thinko in memory
consumption reporting.
2006-12-23 Manuel Lopez-Ibanez <manu@gcc.gnu.org> 2006-12-23 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
PR middle-end/7651 PR middle-end/7651
......
...@@ -1426,7 +1426,7 @@ cgraph_optimize (void) ...@@ -1426,7 +1426,7 @@ cgraph_optimize (void)
} }
if (post_ipa_mem_report) if (post_ipa_mem_report)
{ {
fprintf (stderr, "Memory consumption before IPA\n"); fprintf (stderr, "Memory consumption after IPA\n");
dump_memory_report (false); dump_memory_report (false);
} }
timevar_pop (TV_CGRAPHOPT); timevar_pop (TV_CGRAPHOPT);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment