diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-16 19:23:48 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-04-29 16:14:32 -0600 |
commit | 8613a476b198e67ecd645cf74befe9a0dad255b3 (patch) | |
tree | 24a3dcb18c34e90ea276cdb791caa5195d3a28e2 /gdb/breakpoint.h | |
parent | a0cd5f080b0e2a51bc3122456d2101dafae04dca (diff) | |
download | gdb-8613a476b198e67ecd645cf74befe9a0dad255b3.zip gdb-8613a476b198e67ecd645cf74befe9a0dad255b3.tar.gz gdb-8613a476b198e67ecd645cf74befe9a0dad255b3.tar.bz2 |
Remove breakpoint ops initialization
initialize_breakpoint_ops does not do much any more, so remove it in
favor of statically-initialize objects.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 64f06a9..2d4a89f 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -1400,8 +1400,6 @@ extern void tbreak_command (const char *, int); extern struct breakpoint_ops base_breakpoint_ops; -extern void initialize_breakpoint_ops (void); - /* Arguments to pass as context to some catch command handlers. */ #define CATCH_PERMANENT ((void *) (uintptr_t) 0) #define CATCH_TEMPORARY ((void *) (uintptr_t) 1) |