File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
lldb/source/Plugins/Process/AIX Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1696,10 +1696,12 @@ void NativeProcessAIX::SignalIfAllThreadsStopped() {
1696
1696
// Clear any temporary breakpoints we used to implement software single
1697
1697
// stepping.
1698
1698
for (const auto &thread_info : m_threads_stepping_with_breakpoint) {
1699
- Status error = RemoveBreakpoint (thread_info.second );
1700
- if (error.Fail ())
1701
- LLDB_LOG (log, " pid = {0} remove stepping breakpoint: {1}" ,
1702
- thread_info.first , error);
1699
+ for (auto &&bp_addr : thread_info.second ) {
1700
+ Status error = RemoveBreakpoint (bp_addr);
1701
+ if (error.Fail ())
1702
+ LLDB_LOG (log, " pid = {0} remove stepping breakpoint: {1}" ,
1703
+ thread_info.first , error);
1704
+ }
1703
1705
}
1704
1706
m_threads_stepping_with_breakpoint.clear ();
1705
1707
You can’t perform that action at this time.
0 commit comments