diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-16 19:03:46 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-04-29 16:14:32 -0600 |
commit | a48ddc0d6ab6ce60ecc7d20d704d3891b383dbf6 (patch) | |
tree | 8454ff36f66d6155192cda44860c0a9a14948461 /gdb/ada-lang.c | |
parent | 8d89123dc22188d5560f452bc52baba50d154a91 (diff) | |
download | gdb-a48ddc0d6ab6ce60ecc7d20d704d3891b383dbf6.zip gdb-a48ddc0d6ab6ce60ecc7d20d704d3891b383dbf6.tar.gz gdb-a48ddc0d6ab6ce60ecc7d20d704d3891b383dbf6.tar.bz2 |
Remove breakpoint_ops from init_ada_exception_breakpoint
init_ada_exception_breakpoint is only ever passed a single
breakpoint_ops structure, so remove the parameter.
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 1ef955d..f1af28a 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -12761,7 +12761,6 @@ create_ada_exception_catchpoint (struct gdbarch *gdbarch, std::unique_ptr<ada_catchpoint> c (new ada_catchpoint (ex_kind)); init_ada_exception_breakpoint (c.get (), gdbarch, sal, addr_string.c_str (), - &vtable_breakpoint_ops, tempflag, disabled, from_tty); c->excep_string = excep_string; create_excep_cond_exprs (c.get (), ex_kind); |