* m68k-tdep.c (m68k_frame_align): New.
authorNathan Sidwell <nathan@codesourcery.com>
Thu, 13 Jul 2006 09:30:46 +0000 (09:30 +0000)
committerNathan Sidwell <nathan@codesourcery.com>
Thu, 13 Jul 2006 09:30:46 +0000 (09:30 +0000)
(m68k_gdbarch_init): Set frame_align here.

gdb/ChangeLog
gdb/m68k-tdep.c

index 5424058..9392632 100644 (file)
@@ -1,3 +1,8 @@
+2006-07-13  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * m68k-tdep.c (m68k_frame_align): New.
+       (m68k_gdbarch_init): Set frame_align here.
+
 2006-07-13  Denis PILAT  <denis.pilat@st.com>
 
        * interps.c (interpreter_completer): Allocate one more item to the
index 1ddd652..168eef1 100644 (file)
@@ -413,6 +413,16 @@ m68k_svr4_return_value (struct gdbarch *gdbarch, struct type *type,
 }
 \f
 
+/* Always align the frame to a 4-byte boundary.  This is required on
+   coldfire and harmless on the rest.  */
+
+static CORE_ADDR
+m68k_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
+{
+  /* Align the stack to four bytes.  */
+  return sp & ~3;
+}
+
 static CORE_ADDR
 m68k_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
                      struct regcache *regcache, CORE_ADDR bp_addr, int nargs,
@@ -1155,6 +1165,7 @@ m68k_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
 
   /* Stack grows down. */
   set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
+  set_gdbarch_frame_align (gdbarch, m68k_frame_align);
 
   set_gdbarch_believe_pcc_promotion (gdbarch, 1);
   set_gdbarch_decr_pc_after_break (gdbarch, 2);