* i386-stub.c, sparc-stub.c (getpacket): Actually check checksums.

* m68k-stub.c:  Remove a few extraneous ANSI-isms.
* remote-nindy.c (nindy_prepare_to_store):  Only fetch regs if
they aren't already there.
* remote-vx.c (vx_prepare_to_store):  Ditto.
* xcoffread.c:  Surround forward struct defns with #ifdef __STDC__.
This commit is contained in:
John Gilmore 1992-09-10 19:18:05 +00:00
parent f68be6f088
commit 4ddd278ffa
5 changed files with 15 additions and 7 deletions

View File

@ -1,3 +1,12 @@
Wed Sep 9 17:36:53 1992 John Gilmore (gnu@cygnus.com)
* i386-stub.c, sparc-stub.c (getpacket): Actually check checksums.
* m68k-stub.c: Remove a few extraneous ANSI-isms.
* remote-nindy.c (nindy_prepare_to_store): Only fetch regs if
they aren't already there.
* remote-vx.c (vx_prepare_to_store): Ditto.
* xcoffread.c: Surround forward struct defns with #ifdef __STDC__.
Wed Sep 9 16:50:22 1992 John Gilmore (gnu@cygnus.com)
Removed a large number of changes inserted by Per Bothner

View File

@ -502,7 +502,8 @@ nindy_fetch_registers(regno)
static void
nindy_prepare_to_store()
{
nindy_fetch_registers(-1);
/* Fetch all regs if they aren't already here. */
read_register_bytes (0, NULL, REGISTER_BYTES);
}
static void

View File

@ -474,7 +474,8 @@ vx_read_register (regno)
static void
vx_prepare_to_store ()
{
vx_read_register (-1);
/* Fetch all registers, if any of them are not yet fetched. */
read_register_bytes (0, NULL, REGISTER_BYTES);
}

View File

@ -289,11 +289,6 @@ getpacket(buffer)
{
xmitcsum = hex(getDebugChar()) << 4;
xmitcsum |= hex(getDebugChar());
#if 1
/* Humans shouldn't have to figure out checksums to type to it. */
putDebugChar ('+');
return;
#endif
if (checksum != xmitcsum)
putDebugChar('-'); /* failed checksum */
else

View File

@ -182,7 +182,9 @@ xcoff_symfile_init PARAMS ((struct objfile *));
static void
xcoff_new_init PARAMS ((struct objfile *));
#ifdef __STDC__
struct section_offset;
#endif
static void
xcoff_symfile_read PARAMS ((struct objfile *, struct section_offset *, int));