Constify breakpoint_ops
authorTom Tromey <tom@tromey.com>
Mon, 17 Jan 2022 03:05:18 +0000 (20:05 -0700)
committerTom Tromey <tom@tromey.com>
Fri, 29 Apr 2022 22:14:32 +0000 (16:14 -0600)
Now that all breakpoint_ops are statically initialized, they can all
be made const.

gdb/breakpoint.c
gdb/breakpoint.h

index b6541b5bdb7f9a8aa59432e863f1187480fe3698..c3568883ea9359711155446ef34e15c70aa082df 100644 (file)
@@ -243,21 +243,21 @@ static void tracepoint_probe_create_sals_from_location
       struct linespec_result *canonical,
       enum bptype type_wanted);
 
-struct breakpoint_ops base_breakpoint_ops =
+const struct breakpoint_ops base_breakpoint_ops =
 {
   create_sals_from_location_default,
   create_breakpoints_sal_default,
 };
 
 /* Breakpoints set on probes.  */
-static struct breakpoint_ops bkpt_probe_breakpoint_ops =
+static const struct breakpoint_ops bkpt_probe_breakpoint_ops =
 {
   bkpt_probe_create_sals_from_location,
   create_breakpoints_sal_default,
 };
 
 /* Tracepoints set on probes.  */
-static struct breakpoint_ops tracepoint_probe_breakpoint_ops =
+static const struct breakpoint_ops tracepoint_probe_breakpoint_ops =
 {
   tracepoint_probe_create_sals_from_location,
   create_breakpoints_sal_default,
@@ -13735,7 +13735,7 @@ ftrace_command (const char *arg, int from_tty)
 static void
 strace_command (const char *arg, int from_tty)
 {
-  struct breakpoint_ops *ops;
+  const struct breakpoint_ops *ops;
   event_location_up location;
   enum bptype type;
 
index 2d4a89fb3e6a38a5a91086c6c5a5a6c1a9e1e009..94ae70698a4965e7ed2892749b1b2703ea002545 100644 (file)
@@ -1398,7 +1398,7 @@ extern void awatch_command_wrapper (const char *, int, bool);
 extern void rwatch_command_wrapper (const char *, int, bool);
 extern void tbreak_command (const char *, int);
 
-extern struct breakpoint_ops base_breakpoint_ops;
+extern const struct breakpoint_ops base_breakpoint_ops;
 
 /* Arguments to pass as context to some catch command handlers.  */
 #define CATCH_PERMANENT ((void *) (uintptr_t) 0)