summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2005-03-25 21:09:23 +0000
committerDaniel Jacobowitz <dan@debian.org>2005-03-25 21:09:23 +0000
commitc3a099eeb4e932fcf07cb0c7660dd79f505027ca (patch)
tree40b57790eb944344fc6626c52a5b45cd41471763
parent91d41ffa209a47157c76a1bd589f2f9a7cc4d5cd (diff)
downloadgdb-c3a099eeb4e932fcf07cb0c7660dd79f505027ca.tar.gz
* gdb/Makefile.in (arm-tdep.o): Update dependencies.
* gdb/arm-tdep.c: Include "objfiles.h" and "dwarf2-frame.h". (arm_gdbarch_init): Register dwarf2_frame_sniffer.
-rw-r--r--ChangeLog.csl6
-rw-r--r--gdb/Makefile.in3
-rw-r--r--gdb/arm-tdep.c3
3 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl
index 2a12f94bce8..5d01c91974d 100644
--- a/ChangeLog.csl
+++ b/ChangeLog.csl
@@ -1,5 +1,11 @@
2005-03-25 Daniel Jacobowitz <dan@codesourcery.com>
+ * gdb/Makefile.in (arm-tdep.o): Update dependencies.
+ * gdb/arm-tdep.c: Include "objfiles.h" and "dwarf2-frame.h".
+ (arm_gdbarch_init): Register dwarf2_frame_sniffer.
+
+2005-03-25 Daniel Jacobowitz <dan@codesourcery.com>
+
* gdb/elfread.c (elf_symtab_read): Skip symbols which BFD considers
special.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index ec044fc15c9..d008e48f33a 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -1744,7 +1744,8 @@ arm-tdep.o: arm-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcmd_h) \
$(doublest_h) $(value_h) $(arch_utils_h) $(osabi_h) \
$(frame_unwind_h) $(frame_base_h) $(trad_frame_h) $(arm_tdep_h) \
$(gdb_sim_arm_h) $(elf_bfd_h) $(coff_internal_h) $(elf_arm_h) \
- $(gdb_assert_h) $(bfd_in2_h) $(libcoff_h)
+ $(gdb_assert_h) $(bfd_in2_h) $(libcoff_h) $(objfiles_h) \
+ $(dwarf2_frame_h)
auxv.o: auxv.c $(defs_h) $(target_h) $(gdbtypes_h) $(command_h) \
$(inferior_h) $(valprint_h) $(gdb_assert_h) $(auxv_h) \
$(elf_common_h)
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c
index 18b13fec333..1f5f799e7e6 100644
--- a/gdb/arm-tdep.c
+++ b/gdb/arm-tdep.c
@@ -37,6 +37,8 @@
#include "frame-unwind.h"
#include "frame-base.h"
#include "trad-frame.h"
+#include "objfiles.h"
+#include "dwarf2-frame.h"
#include "arm-tdep.h"
#include "gdb/sim-arm.h"
@@ -2789,6 +2791,7 @@ arm_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
/* Add some default predicates. */
frame_unwind_append_sniffer (gdbarch, arm_stub_unwind_sniffer);
frame_unwind_append_sniffer (gdbarch, arm_sigtramp_unwind_sniffer);
+ frame_unwind_append_sniffer (gdbarch, dwarf2_frame_sniffer);
frame_unwind_append_sniffer (gdbarch, arm_prologue_unwind_sniffer);
/* Now we have tuned the configuration, set a few final things,