diff options
author | Fred Fish <fnf@specifix.com> | 1993-03-30 00:33:44 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1993-03-30 00:33:44 +0000 |
commit | 2225eb851e85caad372743cbf545271ff37e453c (patch) | |
tree | b62ad1b556da27d9285cee433f9a0ee6457221a4 /gdb/remote-vx.c | |
parent | 0a97f6c4a12c8c06b9e966c2f3350dc9b0197125 (diff) | |
download | gdb-2225eb851e85caad372743cbf545271ff37e453c.zip gdb-2225eb851e85caad372743cbf545271ff37e453c.tar.gz gdb-2225eb851e85caad372743cbf545271ff37e453c.tar.bz2 |
* config/m68k/tm-m68k.h: Renamed from config/m68k/tm-68k.h.
* m68k/{tm-3b1.h, tm-altos.h, tm-amix.h, tm-es1800.h,
tm-hp300bsd.h, tm-hp300hpux.h, tm-isi.h, tm-news.h, tm-os68k.h,
tm-st2000.h, tm-sun2.h, tm-sun3.h, tm-vx68.h}: Include tm-m68k.h
instead of tm-68k.h.
* Makefile.in (HFILES): tm-68k.h renamed to tm-m68k.h.
* README, a29k-pinsn.c, m68k-pinsn.c, m68k-stub.c, remote-vx.c,
m68k/{altos.mh, altos.mt, apollo68b.mh, nm-apollo68b.h,
nm-hp300bsd.h, config/m68k/xm-apollo68b.h}: Map '68k' to 'm68k'.
* a29k/tm-a29k.h, doc/gdbint.texinfo: Account for renaming of
tm-68k.h to tm-m68k.h.
* m68k/m68k-fp.mt (TM_FILE): tm-68k-fp.h renamed to tm-m68k-fp.h.
* m68k/m68k-nofp.mt (TM_FILE): tm-68k-nofp.h renamed to
tm-m68k-nofp.h.
Diffstat (limited to 'gdb/remote-vx.c')
-rw-r--r-- | gdb/remote-vx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/remote-vx.c b/gdb/remote-vx.c index 91d2e87..9fc3e41 100644 --- a/gdb/remote-vx.c +++ b/gdb/remote-vx.c @@ -386,7 +386,7 @@ vx_read_register (regno) ptrace_in.pid = inferior_pid; ptrace_out.info.more_data = (caddr_t) &out_data; #ifndef I80960 - out_data.len = 18 * REGISTER_RAW_SIZE (0); /* FIXME 68k hack */ + out_data.len = 18 * REGISTER_RAW_SIZE (0); /* FIXME m68k hack */ #else out_data.len = (16 + 16 + 3) * REGISTER_RAW_SIZE (0); #endif @@ -506,7 +506,7 @@ vx_write_register (regno) in_data.len = (16 + 16 + 3) * sizeof (REGISTER_TYPE); -#else /* not 960 -- assume 68k -- FIXME */ +#else /* not 960 -- assume m68k -- FIXME */ in_data.len = 18 * sizeof (REGISTER_TYPE); @@ -536,7 +536,7 @@ vx_write_register (regno) in_data.bytes = ®isters[REGISTER_BYTE (FP0_REGNUM)]; in_data.len = 4 * REGISTER_RAW_SIZE (FP0_REGNUM); #endif -#else /* not 960 -- assume 68k -- FIXME */ +#else /* not 960 -- assume m68k -- FIXME */ in_data.bytes = ®isters[REGISTER_BYTE (FP0_REGNUM)]; in_data.len = (8 * REGISTER_RAW_SIZE (FP0_REGNUM) |