From defa2fa6658fdfe79fbb934b7f2ba5d5b0566222 Mon Sep 17 00:00:00 2001 From: dalecki Date: Sat, 23 Dec 2006 18:10:48 +0000 Subject: [PATCH] 2006-12-23 Marcin Dalecki * cgraphunit.c (cgraph_optimize): Fixed obvious thinko in memory consumption reporting. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120174 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/cgraphunit.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 09056a4a7d4c..2f2c52000fa8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-12-23 Marcin Dalecki + + * cgraphunit.c (cgraph_optimize): Fixed obvious thinko in memory + consumption reporting. + 2006-12-23 Manuel Lopez-Ibanez PR middle-end/7651 diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index cb2f824fb707..578b36c19837 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -1426,7 +1426,7 @@ cgraph_optimize (void) } if (post_ipa_mem_report) { - fprintf (stderr, "Memory consumption before IPA\n"); + fprintf (stderr, "Memory consumption after IPA\n"); dump_memory_report (false); } timevar_pop (TV_CGRAPHOPT); -- 2.47.3