Fri Mar 13 15:37:02 1998 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
authorJason Molenda <jmolenda@apple.com>
Fri, 13 Mar 1998 23:43:05 +0000 (23:43 +0000)
committerJason Molenda <jmolenda@apple.com>
Fri, 13 Mar 1998 23:43:05 +0000 (23:43 +0000)
        * config/m68k/xm-sun3os4.h:  Remove malloc declarations, they
        are handled via autoconf now.
        * remote.c (remote_ops, extended_remote_ops):  Replace static
        forward declaration by moving the static definition to the top of
        the file, for old K&R compilers.
        * tracepoint.c (collect_symbol, trace_start_command):
        Replace ANSI string concatenation with K&R compatible simple string.

gdb/ChangeLog
gdb/config/m68k/xm-sun3os4.h
gdb/tracepoint.c

index aac9eae2212e47d04065807dcf6d00477f95bafe..924c96e996360e2fe6209ca26eaac639ab16787d 100644 (file)
@@ -1,3 +1,18 @@
+Fri Mar 13 15:37:02 1998  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
+
+        * config/m68k/xm-sun3os4.h:  Remove malloc declarations, they
+        are handled via autoconf now.
+        * remote.c (remote_ops, extended_remote_ops):  Replace static
+        forward declaration by moving the static definition to the top of
+        the file, for old K&R compilers.
+        * tracepoint.c (collect_symbol, trace_start_command):
+        Replace ANSI string concatenation with K&R compatible simple string.
+
+1998-03-11  Fred Fish  <fnf@ninemoons.com>
+
+       * source.c (select_source_symtab): Don't reach error if we have
+       a current_source_symtab from reading in partial symbol table.
+
 start-sanitize-vr4320
 Tue Mar 10 16:15:13 1998  Gavin Koch  <gavin@cygnus.com>
 
index 5d81cc585e5611de78120bbe93ff290da874038a..faf3b7de7ed2d5d2d162831e1880837d8faf769d 100644 (file)
@@ -19,9 +19,3 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #include "m68k/xm-sun3.h"
 #define FPU
-
-/* Prevent type conflicts between yacc malloc decls and defs.h */
-#define MALLOC_INCOMPATIBLE
-extern char *malloc();
-extern char *realloc();
-extern void free();
index e77f103871525444767e60a9b9e6de1329019b29..cd809ffe209b449eb2cbf3778dd7efa08ea5cf7a 100644 (file)
@@ -1198,8 +1198,7 @@ collect_symbol (collect, sym)
   case LOC_STATIC:
     offset = SYMBOL_VALUE_ADDRESS (sym); 
     if (info_verbose)
-      printf_filtered ("LOC_STATIC %s: collect %d bytes "
-                      "at 0x%08x\n",
+      printf_filtered ("LOC_STATIC %s: collect %d bytes at 0x%08x\n",
                       SYMBOL_NAME (sym), len, offset);
     add_memrange (collect, -1, offset, len);   /* 0 == memory */
     break;
@@ -1550,16 +1549,16 @@ trace_start_command (args, from_tty)
              if (tdp_actions)
                {
                  if (strlen (buf) + strlen (tdp_actions) >= sizeof (buf))
-                   error ("Actions for tracepoint %d too complex; "
-                          "please simplify.", t->number);
+                   error ("Actions for tracepoint %d too complex; please simplify.",
+                          t->number);
                  strcat (buf, tdp_actions);
                }
              if (stepping_actions)
                {
                  strcat (buf, "S");
                  if (strlen (buf) + strlen (stepping_actions) >= sizeof (buf))
-                   error ("Actions for tracepoint %d too complex; "
-                          "please simplify.", t->number);
+                   error ("Actions for tracepoint %d too complex; please simplify.",
+                          t->number);
                  strcat (buf, stepping_actions);
                }
            }