aboutsummaryrefslogtreecommitdiff
path: root/gdb/mips-tdep.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2007-05-14 17:23:54 +0000
committerDaniel Jacobowitz <drow@false.org>2007-05-14 17:23:54 +0000
commit2bd0c3d7a728231bd6a21b25e5c18034159dcb61 (patch)
treee6de59a6f9627bce060c9686dabc87af4d8cb648 /gdb/mips-tdep.c
parent14d0675011b16e24eb46c557d59f281384751dcb (diff)
downloadgdb-2bd0c3d7a728231bd6a21b25e5c18034159dcb61.zip
gdb-2bd0c3d7a728231bd6a21b25e5c18034159dcb61.tar.gz
gdb-2bd0c3d7a728231bd6a21b25e5c18034159dcb61.tar.bz2
* Makefile.in (mips-tdep.o): Update.
* mips-tdep.c (mips_gdbarch_init): Register the dwarf2 CFI unwinder.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r--gdb/mips-tdep.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index 759c21f..490ad10 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -57,6 +57,7 @@
#include "floatformat.h"
#include "remote.h"
#include "target-descriptions.h"
+#include "dwarf2-frame.h"
static const struct objfile_data *mips_pdr_data;
@@ -5171,9 +5172,11 @@ mips_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
gdbarch_init_osabi (info, gdbarch);
/* Unwind the frame. */
+ frame_unwind_append_sniffer (gdbarch, dwarf2_frame_sniffer);
frame_unwind_append_sniffer (gdbarch, mips_stub_frame_sniffer);
frame_unwind_append_sniffer (gdbarch, mips_insn16_frame_sniffer);
frame_unwind_append_sniffer (gdbarch, mips_insn32_frame_sniffer);
+ frame_base_append_sniffer (gdbarch, dwarf2_frame_base_sniffer);
frame_base_append_sniffer (gdbarch, mips_stub_frame_base_sniffer);
frame_base_append_sniffer (gdbarch, mips_insn16_frame_base_sniffer);
frame_base_append_sniffer (gdbarch, mips_insn32_frame_base_sniffer);