diff options
author | David Carlton <carlton@bactrian.org> | 2003-06-30 16:21:16 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2003-06-30 16:21:16 +0000 |
commit | b2a7f303a272232ff87fa82f7d1cd23377ef0b01 (patch) | |
tree | 3e0da34849df637f74037153079c4bbe690789ef /gdb/Makefile.in | |
parent | a257b5bbf7a6dc411e3b2602e485e114f88d8203 (diff) | |
download | gdb-b2a7f303a272232ff87fa82f7d1cd23377ef0b01.zip gdb-b2a7f303a272232ff87fa82f7d1cd23377ef0b01.tar.gz gdb-b2a7f303a272232ff87fa82f7d1cd23377ef0b01.tar.bz2 |
2003-06-30 David Carlton <carlton@kealia.com>
Band-aid for PR c++/1245.
* Makefile.in (cp-support.o): Depend on complaints_h.
* cp-support.c: Include complaints.h. Add declaration for
find_last_component.
(cp_find_first_component): Separate code into
cp_find_first_component_aux.
(cp_find_first_component_aux): Call demangled_name_complaint.
(demangled_name_complaint): New.
2003-06-30 David Carlton <carlton@kealia.com>
* gdb.c++/maint.exp (test_invalid_name): New.
(test_first_component): Add tests for invalid names.
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 8d056d8..e0f80b8 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1647,7 +1647,7 @@ cp-namespace.o: cp-namespace.c $(defs_h) $(cp_support_h) $(gdb_obstack_h) \ $(symtab_h) $(symfile_h) $(gdb_assert_h) $(block_h) cp-support.o: cp-support.c $(defs_h) $(cp_support_h) $(gdb_string_h) \ $(demangle_h) $(gdb_assert_h) $(gdbcmd_h) $(dictionary_h) \ - $(objfiles_h) $(frame_h) $(block_h) + $(objfiles_h) $(frame_h) $(block_h) $(complaints_h) cp-valprint.o: cp-valprint.c $(defs_h) $(gdb_obstack_h) $(symtab_h) \ $(gdbtypes_h) $(expression_h) $(value_h) $(command_h) $(gdbcmd_h) \ $(demangle_h) $(annotate_h) $(gdb_string_h) $(c_lang_h) $(target_h) \ |