diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-11-03 17:03:11 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-11-03 17:03:11 +0000 |
commit | 2160782c8260fb1e325a80a4451260b4cabdaa4f (patch) | |
tree | e117e88a3c94137117450727358ba5b225107943 /gdb/Makefile.in | |
parent | 6f2f2c9d168d475a9c77fc2a8e4a5bc73ce31b6e (diff) | |
download | gdb-2160782c8260fb1e325a80a4451260b4cabdaa4f.zip gdb-2160782c8260fb1e325a80a4451260b4cabdaa4f.tar.gz gdb-2160782c8260fb1e325a80a4451260b4cabdaa4f.tar.bz2 |
* bcache.c: Include "gdb_assert.h".
(struct bcache): Add fields "expand_count" and
"expand_hash_count".
(expand_hash_table): Update the expand counts.
(print_bcache_statistics): Use XCALLOC, not alloca. Print stats
on object sizes and hashes.
* Makefile.in (bcache.o): Update dependencies.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 9e83f4a..e9ad9ad 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1606,7 +1606,8 @@ ax-gdb.o: ax-gdb.c $(defs_h) $(symtab_h) $(symfile_h) $(gdbtypes_h) \ $(target_h) $(ax_h) $(ax_gdb_h) $(gdb_string_h) $(block_h) \ $(regcache_h) ax-general.o: ax-general.c $(defs_h) $(ax_h) $(value_h) $(gdb_string_h) -bcache.o: bcache.c $(defs_h) $(gdb_obstack_h) $(bcache_h) $(gdb_string_h) +bcache.o: bcache.c $(defs_h) $(gdb_obstack_h) $(bcache_h) \ + $(gdb_string_h) $(gdb_assert_h) bfd-target.o: bfd-target.c $(defs_h) $(target_h) $(bfd_target_h) \ $(gdb_assert_h) $(gdb_string_h) block.o: block.c $(defs_h) $(block_h) $(symtab_h) $(symfile_h) \ |