diff options
author | Doug Evans <dje@google.com> | 2008-02-08 00:42:07 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2008-02-08 00:42:07 +0000 |
commit | 776592bf173a191aa5d142808ca9164fd243c0ce (patch) | |
tree | de93b4f22843af0ac994cdb88997e54683932eca /gdb/Makefile.in | |
parent | b29242315eb0d6694d66d75895116361e20c8003 (diff) | |
download | gdb-776592bf173a191aa5d142808ca9164fd243c0ce.zip gdb-776592bf173a191aa5d142808ca9164fd243c0ce.tar.gz gdb-776592bf173a191aa5d142808ca9164fd243c0ce.tar.bz2 |
* breakpoint.c: #include "hashtab.h".
(ambiguous_names_p): New fn.
(update_breakpoint_locations): When restoring bp enable status, don't
compare function names if any functions have same name.
* Makefile.in (breakpoint.o): Add hashtab.h dependency.
* gdb.cp/mb-inline.exp: New.
* gdb.cp/mb-inline.h: New.
* gdb.cp/mb-inline1.cc: New.
* gdb.cp/mb-inline2.cc: New.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 38c5fe2..a471f8e 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1950,7 +1950,7 @@ breakpoint.o: breakpoint.c $(defs_h) $(symtab_h) $(frame_h) $(breakpoint_h) \ $(objfiles_h) $(source_h) $(linespec_h) $(completer_h) $(gdb_h) \ $(ui_out_h) $(cli_script_h) $(gdb_assert_h) $(block_h) $(solib_h) \ $(solist_h) $(observer_h) $(exceptions_h) $(gdb_events_h) \ - $(mi_common_h) $(memattr_h) $(ada_lang_h) $(top_h) + $(mi_common_h) $(memattr_h) $(ada_lang_h) $(top_h) $(hashtab_h) bsd-kvm.o: bsd-kvm.c $(defs_h) $(cli_cmds_h) $(command_h) $(frame_h) \ $(regcache_h) $(target_h) $(value_h) $(gdbcore_h) $(gdb_assert_h) \ $(readline_h) $(bsd_kvm_h) |