diff options
author | Tom de Vries <tdevries@suse.de> | 2021-10-21 17:48:07 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2021-10-21 17:48:07 +0200 |
commit | cdeebaab92676c3e433f1d225b304c78ba274fe1 (patch) | |
tree | 21be851a2345906f47fbcd9c8f6f394ff0f5e624 /gdb/tui | |
parent | e3e4224e79906a518a1446049de9924a60d05e7c (diff) | |
download | gdb-cdeebaab92676c3e433f1d225b304c78ba274fe1.zip gdb-cdeebaab92676c3e433f1d225b304c78ba274fe1.tar.gz gdb-cdeebaab92676c3e433f1d225b304c78ba274fe1.tar.bz2 |
[gdb/tui] Fix breakpoint display functionality
In commit 81e6b8eb208 "Make tui-winsource not use breakpoint_chain", a loop
body was transformed into a lambda function body:
...
- for (bp = breakpoint_chain;
- bp != NULL;
- bp = bp->next)
+ iterate_over_breakpoints ([&] (breakpoint *bp) -> bool
...
and consequently:
- a continue was replaced by a return, and
- a final return was added.
Then in commit 240edef62f0 "gdb: remove iterate_over_breakpoints function", we
transformed back to a loop body:
...
- iterate_over_breakpoints ([&] (breakpoint *bp) -> bool
+ for (breakpoint *bp : all_breakpoints ())
...
but without reverting the changes that introduced the two returns.
Consequently, breakpoints no longer show up in the tui source window.
Fix this by reverting the changes that introduced the two returns.
Build on x86_64-linux, tested with all .exp test-cases that contain
tuiterm_env.
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=28483
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-winsource.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/tui/tui-winsource.c b/gdb/tui/tui-winsource.c index afd51e9..955b689 100644 --- a/gdb/tui/tui-winsource.c +++ b/gdb/tui/tui-winsource.c @@ -460,7 +460,7 @@ tui_source_window_base::update_breakpoint_info for (breakpoint *bp : all_breakpoints ()) { if (bp == being_deleted) - return false; + continue; for (bp_location *loc : bp->locations ()) { @@ -478,7 +478,6 @@ tui_source_window_base::update_breakpoint_info mode |= TUI_BP_HARDWARE; } } - return false; } if (line->break_mode != mode) |