Remove unused rbreak_command_wrapper and other declarations
authorSimon Marchi <simon.marchi@efficios.com>
Tue, 26 Nov 2019 17:12:03 +0000 (12:12 -0500)
committerSimon Marchi <simon.marchi@efficios.com>
Tue, 26 Nov 2019 19:29:20 +0000 (14:29 -0500)
rbreak_command_wrapper is unused, so remove it.  And while at it, remove
other declarations around it.

gdb/ChangeLog:

* breakpoint.h (hbreak_command_wrapper, thbreak_command_wrapper,
rbreak_command_wrapper): Remove.
* symtab.c (rbreak_command_wrapper): Remove.

Change-Id: If9782f205e4913f8dfc5beeaa526544f25e099c6

gdb/ChangeLog
gdb/breakpoint.h
gdb/symtab.c

index 8bba12ad4c45041ec5dd655aaf50c879efda7bf0..40403fb95dd736de9bf7ade0da5f647466a551c2 100644 (file)
@@ -1,3 +1,9 @@
+2019-11-26  Simon Marchi  <simon.marchi@efficios.com>
+
+       * breakpoint.h (hbreak_command_wrapper, thbreak_command_wrapper,
+       rbreak_command_wrapper): Remove.
+       * symtab.c (rbreak_command_wrapper): Remove.
+
 2019-11-26  Simon Marchi  <simon.marchi@efficios.com>
 
        * inferior.h (info_terminal_command): Remove declaration.
index 5c8f17ce397e6c23d46699e75378736721b9d32b..a9d689d02a222a0cf442026014e81067cc7240e0 100644 (file)
@@ -1299,9 +1299,6 @@ const char *bpdisp_text (enum bpdisp disp);
 
 extern void break_command (const char *, int);
 
-extern void hbreak_command_wrapper (const char *, int);
-extern void thbreak_command_wrapper (const char *, int);
-extern void rbreak_command_wrapper (const char *, int);
 extern void watch_command_wrapper (const char *, int, int);
 extern void awatch_command_wrapper (const char *, int, int);
 extern void rwatch_command_wrapper (const char *, int, int);
index 2e8ae2383ed24b71168d8a6234ea5360c16bc571..711f8ef196a784e2a0ba84c7210f9a6b8b560310 100644 (file)
@@ -5074,14 +5074,6 @@ info_modules_command (const char *args, int from_tty)
                      from_tty);
 }
 
-/* Breakpoint all functions matching regular expression.  */
-
-void
-rbreak_command_wrapper (char *regexp, int from_tty)
-{
-  rbreak_command (regexp, from_tty);
-}
-
 static void
 rbreak_command (const char *regexp, int from_tty)
 {