diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-03-15 23:08:28 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-03-15 23:08:28 +0000 |
commit | 41fe5eb3892d2240e1f6019e03cd07d669c096ec (patch) | |
tree | 3cc7e6c6911708f17617c541ff78845cf0829c76 /gdb/Makefile.in | |
parent | 3f63813d054d56de7110fefb86600ae995228056 (diff) | |
download | gdb-41fe5eb3892d2240e1f6019e03cd07d669c096ec.zip gdb-41fe5eb3892d2240e1f6019e03cd07d669c096ec.tar.gz gdb-41fe5eb3892d2240e1f6019e03cd07d669c096ec.tar.bz2 |
2004-03-15 Andrew Cagney <cagney@redhat.com>
* Makefile.in (frame-unwind.o): Update dependencies.
* frame-unwind.c: Include "gdb_obstack.h".
(frame_unwind_init): Replace "gdbarch" parameter with an "obstack"
parameter.
(append_predicate): Delete function.
(struct frame_unwind_table_entry): New structure.
(struct frame_unwind_table): Replace "sniffer" with "head" and
"tail".
(frame_unwind_append_sniffer): Update.
(frame_unwind_find_by_frame): Update.
(_initialize_frame_unwind): Registe frame_unwind_init using
gdbarch_data_register_pre_init.
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 ab571af..ceb1c1c 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1765,7 +1765,7 @@ frame.o: frame.c $(defs_h) $(frame_h) $(target_h) $(value_h) $(inferior_h) \ $(annotate_h) $(language_h) $(frame_unwind_h) $(frame_base_h) \ $(command_h) $(gdbcmd_h) frame-unwind.o: frame-unwind.c $(defs_h) $(frame_h) $(frame_unwind_h) \ - $(gdb_assert_h) $(dummy_frame_h) + $(gdb_assert_h) $(dummy_frame_h) $(gdb_obstack_h) frv-linux-tdep.o: frv-linux-tdep.c $(defs_h) $(target_h) $(osabi_h) \ $(elf_bfd_h) $(elf_frv_h) $(frv_tdep_h) frv-tdep.o: frv-tdep.c $(defs_h) $(gdb_string_h) $(inferior_h) $(gdbcore_h) \ |