mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 20:14:06 +08:00
* m68k-tdep.c: Include "dwarf2-frame.h".
(m68k_gdbarch_init): Add the DWARF CFI frame unwinder. * Makefile.in (m68k-tdep.o): Update dependencies.
This commit is contained in:
parent
1c0159e090
commit
3f244638cf
@ -1,3 +1,9 @@
|
||||
2003-09-25 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* m68k-tdep.c: Include "dwarf2-frame.h".
|
||||
(m68k_gdbarch_init): Add the DWARF CFI frame unwinder.
|
||||
* Makefile.in (m68k-tdep.o): Update dependencies.
|
||||
|
||||
2003-09-25 Corinna Vinschen <vinschen@redhat.com>
|
||||
|
||||
* sh-tdep.c (struct frame_extra_info): Remove.
|
||||
|
@ -1994,8 +1994,8 @@ m68knbsd-nat.o: m68knbsd-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
|
||||
$(regcache_h)
|
||||
m68knbsd-tdep.o: m68knbsd-tdep.c $(defs_h) $(gdbtypes_h) $(regcache_h)
|
||||
m68k-stub.o: m68k-stub.c
|
||||
m68k-tdep.o: m68k-tdep.c $(defs_h) $(frame_h) $(frame_base_h) \
|
||||
$(frame_unwind_h) $(symtab_h) $(gdbcore_h) $(value_h) \
|
||||
m68k-tdep.o: m68k-tdep.c $(defs_h) $(dwarf2_frame_h) $(frame_h) \
|
||||
$(frame_base_h) $(frame_unwind_h) $(symtab_h) $(gdbcore_h) $(value_h) \
|
||||
$(gdb_string_h) $(gdb_assert_h) $(inferior_h) $(regcache_h) \
|
||||
$(arch_utils_h) $(osabi_h) $(dis_asm_h) $(m68k_tdep_h) $(gregset_h)
|
||||
macrocmd.o: macrocmd.c $(defs_h) $(macrotab_h) $(macroexp_h) $(macroscope_h) \
|
||||
|
@ -21,6 +21,7 @@
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
#include "defs.h"
|
||||
#include "dwarf2-frame.h"
|
||||
#include "frame.h"
|
||||
#include "frame-base.h"
|
||||
#include "frame-unwind.h"
|
||||
@ -1153,6 +1154,10 @@ m68k_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
||||
/* Frame unwinder. */
|
||||
set_gdbarch_unwind_dummy_id (gdbarch, m68k_unwind_dummy_id);
|
||||
set_gdbarch_unwind_pc (gdbarch, m68k_unwind_pc);
|
||||
|
||||
/* Hook in the DWARF CFI frame unwinder. */
|
||||
frame_unwind_append_sniffer (gdbarch, dwarf2_frame_sniffer);
|
||||
|
||||
frame_base_set_default (gdbarch, &m68k_frame_base);
|
||||
|
||||
/* Hook in ABI-specific overrides, if they have been registered. */
|
||||
|
Loading…
Reference in New Issue
Block a user