[Lldb-commits] [lldb] [lldb][RISCV] fix LR/SC atomic sequence handling in lldb-server (PR #127505)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 20 07:56:50 PDT 2025
================
@@ -23,7 +23,7 @@ class NativeProcessSoftwareSingleStep {
protected:
// List of thread ids stepping with a breakpoint with the address of
// the relevan breakpoint
- std::map<lldb::tid_t, lldb::addr_t> m_threads_stepping_with_breakpoint;
+ std::multimap<lldb::tid_t, lldb::addr_t> m_threads_stepping_with_breakpoint;
----------------
DavidSpickett wrote:
Sorry yes I'm thinking of a bi-directional map.
https://github.com/llvm/llvm-project/pull/127505
More information about the lldb-commits
mailing list