diff options
author | dalecki <dalecki@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-23 18:10:48 +0000 |
---|---|---|
committer | dalecki <dalecki@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-23 18:10:48 +0000 |
commit | defa2fa6658fdfe79fbb934b7f2ba5d5b0566222 (patch) | |
tree | e74504c062566baf8714ac1aef70ba72214f77df | |
parent | e1fd9ad27aa9785937f73e1ae1fadebd79802d04 (diff) | |
download | gcc-defa2fa6658fdfe79fbb934b7f2ba5d5b0566222.tar.gz |
2006-12-23 Marcin Dalecki <martin@dalecki.de>
* 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
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cgraphunit.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 09056a4a7d4..2f2c52000fa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +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> PR middle-end/7651 diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index cb2f824fb70..578b36c1983 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); |