* config/m68k/tm-m68kv4.h (DWARF_REG_TO_REGNUM): Define to
authorPeter Schauer <Peter.Schauer@mytum.de>
Thu, 20 Jul 1995 05:53:28 +0000 (05:53 +0000)
committerPeter Schauer <Peter.Schauer@mytum.de>
Thu, 20 Jul 1995 05:53:28 +0000 (05:53 +0000)
correctly map floating point registers numbers.

gdb/config/m68k/tm-m68kv4.h

index c550fd9f1866d5cf81db262a6bd63c31bc3a82d8..3895cddc8043686ee2fdf6279d99220a91949b6e 100644 (file)
@@ -1,6 +1,6 @@
 /* Target definitions for GDB on a Motorola 680x0 running SVR4.
    (Commodore Amiga with amix or Atari TT with ASV)
-   Copyright (C) 1991, Free Software Foundation, Inc.
+   Copyright (C) 1991, 1995 Free Software Foundation, Inc.
    Written by Fred Fish at Cygnus Support (fnf@cygint)
 
 This file is part of GDB.
@@ -64,3 +64,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
    This routine returns true on success */
 
 #define GET_LONGJMP_TARGET(ADDR) get_longjmp_target(ADDR)
+
+/* Convert a DWARF register number to a gdb REGNUM.  */
+#define DWARF_REG_TO_REGNUM(num) ((num) < 16 ? (num) : (num)+FP0_REGNUM-16)