* config/m68k/dpx2.mh (NATDEPFILES): Remove duplicate inclusion

of inftarg.o.
	* config/m68k/tm-dpx2.h (CANNOT_STORE_REGISTER):  Define to inhibit
	writing of floating registers, the dpx2 kernel disallows it.
This commit is contained in:
Peter Schauer 1994-06-12 11:11:39 +00:00
parent 33c66e44ed
commit 020ed9bbb7
2 changed files with 5 additions and 3 deletions

View File

@ -2,8 +2,7 @@
XDEPFILES=
XM_FILE= xm-dpx2.h
NAT_FILE= nm-dpx2.h
NATDEPFILES= infptrace.o coredep.o corelow.o inftarg.o dpx2-nat.o \
inftarg.o fork-child.o
NATDEPFILES= infptrace.o coredep.o corelow.o inftarg.o dpx2-nat.o fork-child.o
REGEX=regex.o
REGEX1=regex.o
TERMCAP=-lcurses

View File

@ -1,5 +1,5 @@
/* Parameters for targeting to a Bull DPX2.
Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
Copyright (C) 1986, 1987, 1989, 1991, 1994 Free Software Foundation, Inc.
This file is part of GDB.
@ -26,5 +26,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
record, not using x_fsize field. */
#define FUNCTION_EPILOGUE_SIZE 4
/* The child target can't deal with writing floating registers. */
#define CANNOT_STORE_REGISTER(regno) ((regno) >= FP0_REGNUM)
#include <sys/types.h>
#include "m68k/tm-m68k.h"