* 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.
This commit is contained in:
parent
6ddba99277
commit
ea5dad7f09
5 changed files with 6 additions and 76 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
|
@ -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)
|
|
@ -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 ;;
|
||||
|
|
Loading…
Reference in a new issue