diff options
author | Tom Tromey <tromey@redhat.com> | 2008-08-23 20:31:37 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2008-08-23 20:31:37 +0000 |
commit | d4ce0d3f6998260b3052f3d1a4b576c718694c14 (patch) | |
tree | 665eb33853f980f5eb14b2e3b8ebe8743e6378b3 /gdb/symmisc.c | |
parent | 2e668a5dffaa49fde3492f9018ace8ba499ed515 (diff) | |
download | gdb-d4ce0d3f6998260b3052f3d1a4b576c718694c14.zip gdb-d4ce0d3f6998260b3052f3d1a4b576c718694c14.tar.gz gdb-d4ce0d3f6998260b3052f3d1a4b576c718694c14.tar.bz2 |
2008-08-23 Jim Blandy <jimb@redhat.com>
PR macros/607:
* symmisc.c (print_symbol_bcache_statistics): Include statistics
for the macro bcache.
Diffstat (limited to 'gdb/symmisc.c')
-rw-r--r-- | gdb/symmisc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/symmisc.c b/gdb/symmisc.c index 568cc68..cbd43be 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -135,6 +135,7 @@ print_symbol_bcache_statistics (void) { printf_filtered (_("Byte cache statistics for '%s':\n"), objfile->name); print_bcache_statistics (objfile->psymbol_cache, "partial symbol cache"); + print_bcache_statistics (objfile->macro_cache, "preprocessor macro cache"); } immediate_quit--; } |