[Lldb-commits] [lldb] [lldb][RISCV] fix LR/SC atomic sequence handling in lldb-server (PR #127505)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 20 07:15:21 PDT 2025
================
@@ -16,6 +16,16 @@
namespace lldb_private {
+class ARMSingleStepBreakpointLocationsPredictor
+ : public SingleStepBreakpointLocationsPredictor {
+public:
+ ARMSingleStepBreakpointLocationsPredictor(
+ std::unique_ptr<EmulateInstruction> emulator_up)
+ : SingleStepBreakpointLocationsPredictor{std::move(emulator_up)} {}
----------------
dlav-sc wrote:
Honestly, I'm not sure what you mean 😅. I need a constructor that takes a `std::unique_ptr<EmulateInstruction>`.
https://github.com/llvm/llvm-project/pull/127505
More information about the lldb-commits
mailing list