From: Tom Tromey Date: Sat, 23 Aug 2008 20:31:37 +0000 (+0000) Subject: 2008-08-23 Jim Blandy X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d4ce0d3f6998260b3052f3d1a4b576c718694c14;p=binutils-gdb.git 2008-08-23 Jim Blandy PR macros/607: * symmisc.c (print_symbol_bcache_statistics): Include statistics for the macro bcache. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9b90cc00aec..7b1f0b807a5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2008-08-23 Jim Blandy + + PR macros/607: + * symmisc.c (print_symbol_bcache_statistics): Include statistics + for the macro bcache. + 2008-08-23 Tom Tromey * macrotab.h (struct macro_definition) : Shrink to one bit. diff --git a/gdb/symmisc.c b/gdb/symmisc.c index 568cc683527..cbd43bed09d 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--; }