* config/m68k/tm-m68k.h: Fix typo.
authorAndrew Cagney <cagney@redhat.com>
Sat, 22 Jun 2002 00:33:56 +0000 (00:33 +0000)
committerAndrew Cagney <cagney@redhat.com>
Sat, 22 Jun 2002 00:33:56 +0000 (00:33 +0000)
(FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
(m68k_frame_init_saved_regs): Declare.

gdb/ChangeLog
gdb/config/m68k/tm-m68k.h

index 1fc1844c6d9f16f88b9e785eb4f97dee688dd616..a2340310446abce1634322d8fe265ee207b19b73 100644 (file)
@@ -1,3 +1,9 @@
+2002-06-21  Andrew Cagney  <ac131313@redhat.com>
+
+       * config/m68k/tm-m68k.h: Fix typo.
+       (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
+       (m68k_frame_init_saved_regs): Declare.
+
 2002-06-21  Jim Blandy  <jimb@redhat.com>
 
        Remove some vestiges of Harris 88k support.
index 0954a024824ed742603fbcb17c42a927dc3cf5b5..bf6ee96bf9be155ce222b7a143c331beefae829e 100644 (file)
@@ -298,6 +298,19 @@ extern CORE_ADDR m68k_saved_pc_after_call (struct frame_info *);
 /* Return number of bytes at start of arglist that are not really args.  */
 
 #define FRAME_ARGS_SKIP 8
+
+/* Put here the code to store, into a struct frame_saved_regs,
+   the addresses of the saved registers of frame described by FRAME_INFO.
+   This includes special registers such as pc and fp saved in special
+   ways in the stack frame.  sp is even more special:
+   the address we return for it IS the sp for the next frame.  */
+
+#if !GDB_MULTI_ARCH
+#if !defined (FRAME_INIT_SAVED_REGS)
+#define FRAME_INIT_SAVED_REGS(fi) m68k_frame_init_saved_regs ((fi))
+void m68k_frame_init_saved_regs (struct frame_info *frame_info);
+#endif /* no FRAME_INIT_SAVED_REGS.  */
+#endif
 \f
 
 /* Things needed for making the inferior call functions.  */
@@ -331,7 +344,7 @@ extern CORE_ADDR m68k_saved_pc_after_call (struct frame_info *);
 /* FIXME: Wrong to hardwire this as BPT_VECTOR when sometimes it
    should be REMOTE_BPT_VECTOR.  Best way to fix it would be to define
    CALL_DUMMY_BREAKPOINT_OFFSET.  */
-#if !GDB_MULTI_ARCH_PARTIAL
+#if !GDB_MULTI_ARCH
 #define CALL_DUMMY {0xf227e0ff, 0x48e7fffc, 0x426742e7, 0x4eb93232, 0x3232dffc, 0x69696969, (0x4e404e71 | (BPT_VECTOR << 16))}
 #define CALL_DUMMY_LENGTH 28   /* Size of CALL_DUMMY */
 #define CALL_DUMMY_START_OFFSET 12     /* Offset to jsr instruction */