aboutsummaryrefslogtreecommitdiff
path: root/gdb/breakpoint.c
diff options
context:
space:
mode:
authorPedro Alves <pedro@palves.net>2022-05-12 21:04:42 +0100
committerPedro Alves <pedro@palves.net>2022-05-20 20:41:02 +0100
commitf9703051465a03bace3cc17b80fcd12c19a60821 (patch)
tree4f68f717190c2a90efe7e4a2add00a9761c2ce62 /gdb/breakpoint.c
parent9a71ed14cb3c28238a12f19847a9f4f22ca20fd2 (diff)
downloadfsf-binutils-gdb-f9703051465a03bace3cc17b80fcd12c19a60821.zip
fsf-binutils-gdb-f9703051465a03bace3cc17b80fcd12c19a60821.tar.gz
fsf-binutils-gdb-f9703051465a03bace3cc17b80fcd12c19a60821.tar.bz2
Momentary breakpoints should have no breakpoint number
Momentary breakpoints have no breakpoint number, their breakpoint number should be always 0, to avoid constantly incrementing (or decrementing) the internal breakpoint count. Indeed, set_momentary_breakpoint installs the created breakpoint without a number. However, momentary_breakpoint_from_master incorrectly gives an internal breakpoint number to the new breakpoint. This commit fixes that. Change-Id: Iedcae5432cdf232db9e9a6e1a646d358abd34f95
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r--gdb/breakpoint.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 0c3946c..9006311 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -7945,7 +7945,6 @@ momentary_breakpoint_from_master (struct breakpoint *orig,
copy->enable_state = bp_enabled;
copy->disposition = disp_donttouch;
- copy->number = internal_breakpoint_number--;
breakpoint *b = add_to_breakpoint_chain (std::move (copy));
update_global_location_list_nothrow (UGLL_DONT_INSERT);