aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1994-02-07 17:04:47 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1994-02-07 17:04:47 +0000
commitea5dad7f09f30b9d80aaf49839d2d1e91e99fd34 (patch)
tree51cab2651c9963de9187611fadefaa87b061de37 /gdb
parent6ddba99277063555be24a1118ef8afa1f85dfdc1 (diff)
downloadgdb-ea5dad7f09f30b9d80aaf49839d2d1e91e99fd34.zip
gdb-ea5dad7f09f30b9d80aaf49839d2d1e91e99fd34.tar.gz
gdb-ea5dad7f09f30b9d80aaf49839d2d1e91e99fd34.tar.bz2
* config/m68k/{m68k-em.mt,tm-m68k-em.h}: Remove; no longer used.
* configure.in: Remove comment about m68k-em.mt. * Makefile.in: Remove references.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/config/m68k/.Sanitize2
-rw-r--r--gdb/config/m68k/m68k-em.mt3
-rw-r--r--gdb/config/m68k/tm-m68k-em.h70
-rw-r--r--gdb/configure.in1
5 files changed, 6 insertions, 76 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c9b9a14..73c6397 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+Mon Feb 7 08:44:17 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
+
+ * config/m68k/{m68k-em.mt,tm-m68k-em.h}: Remove; no longer used.
+ * configure.in: Remove comment about m68k-em.mt.
+ * Makefile.in: Remove references.
+
Mon Feb 7 08:22:42 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* defs.h [BFD64]: Use BFD_HOST_64_BIT, not nonexistent
diff --git a/gdb/config/m68k/.Sanitize b/gdb/config/m68k/.Sanitize
index 14425fd..573b396 100644
--- a/gdb/config/m68k/.Sanitize
+++ b/gdb/config/m68k/.Sanitize
@@ -41,7 +41,6 @@ hp300hpux.mh
hp300hpux.mt
isi.mh
isi.mt
-m68k-em.mt
m68klynx.mh
m68klynx.mt
monitor.mt
@@ -71,7 +70,6 @@ sun3os4.mt
tm-3b1.h
tm-apollo68b.h
tm-delta68.h
-tm-m68k-em.h
tm-m68k.h
tm-m68klynx.h
tm-altos.h
diff --git a/gdb/config/m68k/m68k-em.mt b/gdb/config/m68k/m68k-em.mt
deleted file mode 100644
index 0d0a946..0000000
--- a/gdb/config/m68k/m68k-em.mt
+++ /dev/null
@@ -1,3 +0,0 @@
-# Target: Motorola 68xxx with floating point
-TDEPFILES= exec.o m68k-pinsn.o m68k-tdep.o
-TM_FILE= tm-m68k-em.h
diff --git a/gdb/config/m68k/tm-m68k-em.h b/gdb/config/m68k/tm-m68k-em.h
deleted file mode 100644
index 87b981e..0000000
--- a/gdb/config/m68k/tm-m68k-em.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/* Target machine parameters for embedded m68k with 6888x float, for GDB.
- Copyright 1986, 1987, 1989, 1992, 1993 Free Software Foundation, Inc.
-
-This file is part of GDB.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
-
-/* GCC is probably the only compiler used on this configuration. So
- get this right even if the code which detects gcc2_compiled. is
- still broken. */
-
-#define BELIEVE_PCC_PROMOTION 1
-
-#include "m68k/tm-m68k.h"
-
-/* Longjmp info comes from the Sun-3 machine description. Might as well
- guess... */
-
-/* Offsets (in target ints) into jmp_buf. Not defined by Sun, but at least
- documented in a comment in <machine/setjmp.h>! */
-
-#define JB_ELEMENT_SIZE 4
-
-#define JB_ONSSTACK 0
-#define JB_SIGMASK 1
-#define JB_SP 2
-#define JB_PC 3
-#define JB_PSL 4
-#define JB_D2 5
-#define JB_D3 6
-#define JB_D4 7
-#define JB_D5 8
-#define JB_D6 9
-#define JB_D7 10
-#define JB_A2 11
-#define JB_A3 12
-#define JB_A4 13
-#define JB_A5 14
-#define JB_A6 15
-
-/* Figure out where the longjmp will land. Slurp the args out of the stack.
- We expect the first arg to be a pointer to the jmp_buf structure from which
- we extract the pc (JB_PC) that we will land at. The pc is copied into ADDR.
- This routine returns true on success */
-
-#define GET_LONGJMP_TARGET(ADDR) get_longjmp_target(ADDR)
-
-/* Where is the PC after a call? */
-
-#ifdef __STDC__
-struct frame_info;
-#endif
-
-extern CORE_ADDR m68k_saved_pc_after_call PARAMS ((struct frame_info *));
-
-#undef SAVED_PC_AFTER_CALL
-#define SAVED_PC_AFTER_CALL(frame) \
- m68k_saved_pc_after_call(frame)
diff --git a/gdb/configure.in b/gdb/configure.in
index cd0595d..3c2021e 100644
--- a/gdb/configure.in
+++ b/gdb/configure.in
@@ -240,7 +240,6 @@ m68*-rom68k-*) gdb_target=monitor ;;
m68*-*bug-*) gdb_target=monitor ;;
m68*-monitor-*) gdb_target=monitor ;;
-# These next four used to be m68k-em
m68*-*-aout*) gdb_target=monitor ;;
m68*-*-coff*) gdb_target=monitor ;;
m68*-*-elf*) gdb_target=monitor ;;