* Makefile.in (mips-tdep.o): Update.
authorDaniel Jacobowitz <drow@false.org>
Mon, 14 May 2007 17:23:54 +0000 (17:23 +0000)
committerDaniel Jacobowitz <drow@false.org>
Mon, 14 May 2007 17:23:54 +0000 (17:23 +0000)
* mips-tdep.c (mips_gdbarch_init): Register the dwarf2 CFI
unwinder.

gdb/ChangeLog
gdb/Makefile.in
gdb/mips-tdep.c

index 79058155c48bfb78996dbccf7df7492e55655e7a..0394552c67ae395ee2f159f2339e0161902fc938 100644 (file)
@@ -1,3 +1,9 @@
+2007-05-14  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * Makefile.in (mips-tdep.o): Update.
+       * mips-tdep.c (mips_gdbarch_init): Register the dwarf2 CFI
+       unwinder.
+
 2007-05-14  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * dwarf2-frame.c (dwarf2_frame_prev_register): Use pack_long
index 336396d2fd6297fa888ce54dd5549dabbf6784f2..7574f0b682a396b8640b328a32c653d2bbc886a1 100644 (file)
@@ -2360,7 +2360,8 @@ mips-tdep.o: mips-tdep.c $(defs_h) $(gdb_string_h) $(gdb_assert_h) \
        $(block_h) $(reggroups_h) $(opcode_mips_h) $(elf_mips_h) \
        $(elf_bfd_h) $(symcat_h) $(sim_regno_h) $(dis_asm_h) \
        $(frame_unwind_h) $(frame_base_h) $(trad_frame_h) $(infcall_h) \
-       $(floatformat_h) $(remote_h) $(target_descriptions_h)
+       $(floatformat_h) $(remote_h) $(target_descriptions_h) \
+       $(dwarf2_frame_h)
 memory-map.o: memory-map.c $(defs_h) $(memory_map_h) $(xml_support_h) \
        $(gdb_assert_h) $(exceptions_h) $(gdb_string_h)
 mn10300-linux-tdep.o: mn10300-linux-tdep.c $(defs_h) $(gdbcore_h) \
index 759c21f8e162c36a35773ea7e0f60646dd29ba4d..490ad10914c7c5e7e99d0f71d0b16076bcb59890 100644 (file)
@@ -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);