* remote.c: Around redefinition of PBUFSIZE, adjust whitespace.
authorJim Kingdon <jkingdon@engr.sgi.com>
Mon, 11 Apr 1994 17:52:11 +0000 (17:52 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Mon, 11 Apr 1994 17:52:11 +0000 (17:52 +0000)
* config/pa/tm-hppa.h (REGISTER_BYTES): Use 4 rather than
REGISTER_RAW_SIZE (1).
Together these changes work around a bug in HP's compiler.  Both
seem to be necessary.

gdb/ChangeLog
gdb/remote.c

index 702379351782ff24bb5cb1c07dfc6271bcce7f9a..3aa5240fb958b0946ab10e72a7dc259b362e9bdf 100644 (file)
@@ -1,3 +1,11 @@
+Mon Apr 11 10:44:35 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
+
+       * remote.c: Around redefinition of PBUFSIZE, adjust whitespace.
+       * config/pa/tm-hppa.h (REGISTER_BYTES): Use 4 rather than
+       REGISTER_RAW_SIZE (1).
+       Together these changes work around a bug in HP's compiler.  Both
+       seem to be necessary.
+
 Mon Apr 11 09:18:24 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
 
        * paread.c (pa_symtab_read): Handle ST_STUB symbols and symbols
index f4b17b8582a741a9a011b5bface1bfeb591af36a..9be476c662fc59655803e4c0a53698094a414b90 100644 (file)
@@ -250,8 +250,11 @@ serial_t remote_desc = NULL;
 #define MAXBUFBYTES ((PBUFSIZ-32)/2)
 
 /* Round up PBUFSIZ to hold all the registers, at least.  */
+/* The blank line after the #if seems to be required to work around a
+   bug in HP's PA compiler.  */
 #if REGISTER_BYTES > MAXBUFBYTES
-#undef PBUFSIZ
+
+#undef PBUFSIZ
 #define        PBUFSIZ (REGISTER_BYTES * 2 + 32)
 #endif