diff options
author | Pedro Alves <pedro@palves.net> | 2022-05-07 00:07:44 +0100 |
---|---|---|
committer | Pedro Alves <pedro@palves.net> | 2022-05-20 20:41:00 +0100 |
commit | d837fd813d9c72ea7d06ef839b95857dcf0da811 (patch) | |
tree | a796d6f7bcf4278d7f9341b5ae4c4fe00f1666d1 /gdb/breakpoint.c | |
parent | ef4848c75f82738c342f978b3a80b83ce1817772 (diff) | |
download | fsf-binutils-gdb-d837fd813d9c72ea7d06ef839b95857dcf0da811.zip fsf-binutils-gdb-d837fd813d9c72ea7d06ef839b95857dcf0da811.tar.gz fsf-binutils-gdb-d837fd813d9c72ea7d06ef839b95857dcf0da811.tar.bz2 |
Remove "internal" parameter from a couple functions
None of init_breakpoint_sal, create_breakpoint_sal, and
strace_marker_create_breakpoints_sal make use of their "internal"
parameter, so remove it.
Change-Id: I943f3bb44717ade7a7b7547edf8f3ff3c37da435
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 7008672..dd6623d 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -8305,7 +8305,7 @@ init_breakpoint_sal (base_breakpoint *b, struct gdbarch *gdbarch, enum bptype type, enum bpdisp disposition, int thread, int task, int ignore_count, int from_tty, - int enabled, int internal, unsigned flags, + int enabled, unsigned flags, int display_canonical) { int i; @@ -8462,7 +8462,7 @@ create_breakpoint_sal (struct gdbarch *gdbarch, type, disposition, thread, task, ignore_count, from_tty, - enabled, internal, flags, + enabled, flags, display_canonical); install_breakpoint (internal, std::move (b), 0); @@ -12152,7 +12152,7 @@ strace_marker_create_breakpoints_sal (struct gdbarch *gdbarch, std::move (extra_string), type_wanted, disposition, thread, task, ignore_count, - from_tty, enabled, internal, flags, + from_tty, enabled, flags, canonical->special_display); /* Given that its possible to have multiple markers with the same string id, if the user is creating a static |