2004-08-01 Andrew Cagney <cagney@gnu.org>
* sh-tdep.c (sh_gdbarch_init): Disable call to sh64_gdbarch_init. * config/sh/nbsd.mt (TDEPFILES): Remove sh64-tdep.o. * config/sh/linux.mt (TDEPFILES): Remove sh64-tdep.o. * config/sh/embed.mt (TDEPFILES): Remove sh64-tdep.o.
This commit is contained in:
parent
8241eaa6e5
commit
03d363a145
6 changed files with 11 additions and 4 deletions
|
@ -1,5 +1,10 @@
|
|||
2004-08-01 Andrew Cagney <cagney@gnu.org>
|
||||
|
||||
* sh-tdep.c (sh_gdbarch_init): Disable call to sh64_gdbarch_init.
|
||||
* config/sh/nbsd.mt (TDEPFILES): Remove sh64-tdep.o.
|
||||
* config/sh/linux.mt (TDEPFILES): Remove sh64-tdep.o.
|
||||
* config/sh/embed.mt (TDEPFILES): Remove sh64-tdep.o.
|
||||
|
||||
* infcall.c (call_function_by_hand): Do not use
|
||||
DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP,
|
||||
DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_TARGET_READ_FP,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Target: Embedded Renesas Super-H with ICE and simulator
|
||||
TDEPFILES= sh-tdep.o sh64-tdep.o monitor.o sh3-rom.o remote-e7000.o ser-e7kpc.o dsrec.o
|
||||
TDEPFILES= sh-tdep.o monitor.o sh3-rom.o remote-e7000.o ser-e7kpc.o dsrec.o
|
||||
TM_FILE= tm-sh.h
|
||||
|
||||
SIM_OBS = remote-sim.o
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Target: Renesas Super-H running GNU/Linux
|
||||
TDEPFILES= sh-tdep.o sh64-tdep.o monitor.o sh3-rom.o remote-e7000.o ser-e7kpc.o dsrec.o solib.o solib-svr4.o solib-legacy.o
|
||||
TDEPFILES= sh-tdep.o monitor.o sh3-rom.o remote-e7000.o ser-e7kpc.o dsrec.o solib.o solib-svr4.o solib-legacy.o
|
||||
TM_FILE= tm-linux.h
|
||||
|
||||
SIM_OBS = remote-sim.o
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Target: SuperH running NetBSD
|
||||
TDEPFILES= sh-tdep.o sh64-tdep.o shnbsd-tdep.o corelow.o nbsd-tdep.o solib.o solib-svr4.o
|
||||
TDEPFILES= sh-tdep.o shnbsd-tdep.o corelow.o nbsd-tdep.o solib.o solib-svr4.o
|
||||
TM_FILE= tm-nbsd.h
|
||||
|
||||
SIM_OBS = remote-sim.o
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Target: Renesas Super-H running on Windows CE
|
||||
TDEPFILES= sh-tdep.o sh64-tdep.o wince.o
|
||||
TDEPFILES= sh-tdep.o wince.o
|
||||
TM_FILE= tm-wince.h
|
||||
MT_CFLAGS=-DSHx -U_X86_ -U_M_IX86 -U__i386__ -U__i486__ -U__i586__ -U__i686__ -DUNICODE -D_WIN32_WCE -DWINCE_STUB='"${target_alias}-stub.exe"'
|
||||
TM_CLIBS=-lrapi
|
||||
|
|
|
@ -2180,10 +2180,12 @@ sh_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
|||
sh_show_regs = sh4_nofpu_show_regs;
|
||||
break;
|
||||
|
||||
#if 0
|
||||
case bfd_mach_sh5:
|
||||
sh_show_regs = sh64_show_regs;
|
||||
/* SH5 is handled entirely in sh64-tdep.c */
|
||||
return sh64_gdbarch_init (info, arches);
|
||||
#endif
|
||||
}
|
||||
|
||||
/* If there is already a candidate, use it. */
|
||||
|
|
Loading…
Reference in a new issue