Remove internal_complaint
authorTom Tromey <tom@tromey.com>
Wed, 16 May 2018 21:09:32 +0000 (15:09 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 23 May 2018 15:16:59 +0000 (09:16 -0600)
I happened to notice that gdb has both complaint_internal and
internal_complaint.  The latter is unused, so this patch removes it.

gdb/ChangeLog
2018-05-23  Tom Tromey  <tom@tromey.com>

* complaints.c (internal_complaint): Remove.
* complaints.h (internal_complaint): Remove.

gdb/ChangeLog
gdb/complaints.c
gdb/complaints.h

index d5cd413..da94c03 100644 (file)
@@ -1,3 +1,8 @@
+2018-05-23  Tom Tromey  <tom@tromey.com>
+
+       * complaints.c (internal_complaint): Remove.
+       * complaints.h (internal_complaint): Remove.
+
 2018-05-22  Maciej W. Rozycki  <macro@mips.com>
 
        * i387-tdep.c (i387_collect_xsave): Make `i' unsigned.
index 44e98f8..9e5df39 100644 (file)
@@ -245,16 +245,6 @@ complaint_internal (struct complaints **complaints, const char *fmt, ...)
   va_end (args);
 }
 
-void
-internal_complaint (struct complaints **complaints, const char *file,
-                   int line, const char *fmt, ...)
-{
-  va_list args;
-  va_start (args, fmt);
-  vcomplaint (complaints, file, line, fmt, args);
-  va_end (args);
-}
-
 /* Clear out / initialize all complaint counters that have ever been
    incremented.  If LESS_VERBOSE is 1, be less verbose about
    successive complaints, since the messages are appearing all
index 3c1b3c5..37648fb 100644 (file)
@@ -47,11 +47,6 @@ extern void complaint_internal (struct complaints **complaints,
     }                                                          \
   while (0)
 
-extern void internal_complaint (struct complaints **complaints,
-                               const char *file, int line,
-                               const char *fmt,
-                               ...) ATTRIBUTE_PRINTF (4, 5);
-
 /* Clear out / initialize all complaint counters that have ever been
    incremented.  If LESS_VERBOSE is 1, be less verbose about
    successive complaints, since the messages are appearing all