diff options
author | Martin Liska <mliska@suse.cz> | 2015-06-03 11:36:08 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2015-06-03 09:36:08 +0000 |
commit | b2b43e33298fd62d7348696044e51086a02b0cb2 (patch) | |
tree | 7c6a8149f569ee6faec897bb31d43beb8e5b4577 /gcc/alloc-pool.h | |
parent | ac05926156c0997b191af1176122ee3d8663d19e (diff) | |
download | gcc-b2b43e33298fd62d7348696044e51086a02b0cb2.zip gcc-b2b43e33298fd62d7348696044e51086a02b0cb2.tar.gz gcc-b2b43e33298fd62d7348696044e51086a02b0cb2.tar.bz2 |
Fix memory report layout at various places.
* alloc-pool.h (struct pool_usage): Correct space padding.
* ggc-page.c (ggc_print_statistics): Align columns in a report.
* mem-stats.h (struct mem_usage): Add argument to print_dash_line.
* tree.c (dump_tree_statistics): Align columns in a report.
From-SVN: r224071
Diffstat (limited to 'gcc/alloc-pool.h')
-rw-r--r-- | gcc/alloc-pool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/alloc-pool.h b/gcc/alloc-pool.h index b1bd386..b10cfa41 100644 --- a/gcc/alloc-pool.h +++ b/gcc/alloc-pool.h @@ -76,7 +76,7 @@ struct pool_usage: public mem_usage inline void dump_footer () { print_dash_line (); - fprintf (stderr, "%s%75li%10li\n", "Total", (long)m_instances, + fprintf (stderr, "%s%82li%10li\n", "Total", (long)m_instances, (long)m_allocated); print_dash_line (); } |