diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-16 19:16:01 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-04-29 16:14:32 -0600 |
commit | a0cd5f080b0e2a51bc3122456d2101dafae04dca (patch) | |
tree | 981e3bbaa0269afc5de0192d8b7b1ce145fc4d9e /gdb/mi | |
parent | c47614fef9fa278399e0d2818d42b73f0e0a26ec (diff) | |
download | gdb-a0cd5f080b0e2a51bc3122456d2101dafae04dca.zip gdb-a0cd5f080b0e2a51bc3122456d2101dafae04dca.tar.gz gdb-a0cd5f080b0e2a51bc3122456d2101dafae04dca.tar.bz2 |
Remove vtable_breakpoint_ops
There's no need to have vtable_breakpoint_ops any more, so remove it
in favor of base_breakpoint_ops.
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-cmd-break.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mi/mi-cmd-break.c b/gdb/mi/mi-cmd-break.c index fb03431..1d9fc0d 100644 --- a/gdb/mi/mi-cmd-break.c +++ b/gdb/mi/mi-cmd-break.c @@ -327,12 +327,12 @@ mi_cmd_break_insert_1 (int dprintf, const char *command, char **argv, int argc) else if (dprintf) { type_wanted = bp_dprintf; - ops = &vtable_breakpoint_ops; + ops = &base_breakpoint_ops; } else { type_wanted = hardware ? bp_hardware_breakpoint : bp_breakpoint; - ops = &vtable_breakpoint_ops; + ops = &base_breakpoint_ops; } if (is_explicit) |