aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2008-08-23 20:31:37 +0000
committerTom Tromey <tromey@redhat.com>2008-08-23 20:31:37 +0000
commitd4ce0d3f6998260b3052f3d1a4b576c718694c14 (patch)
tree665eb33853f980f5eb14b2e3b8ebe8743e6378b3 /gdb
parent2e668a5dffaa49fde3492f9018ace8ba499ed515 (diff)
downloadgdb-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')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/symmisc.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 9b90cc0..7b1f0b8 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2008-08-23 Jim Blandy <jimb@redhat.com>
+
+ PR macros/607:
+ * symmisc.c (print_symbol_bcache_statistics): Include statistics
+ for the macro bcache.
+
2008-08-23 Tom Tromey <tromey@redhat.com>
* macrotab.h (struct macro_definition) <kind>: Shrink to one bit.
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--;
}