[Lldb-commits] [lldb] [lldb] Step over non-lldb breakpoints (PR #174348)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Mon Jan 5 06:40:20 PST 2026
================
@@ -1159,6 +1159,40 @@ class StopInfoUnixSignal : public StopInfo {
return false;
}
+ void PerformAction(Event *event_ptr) override {
----------------
DavidSpickett wrote:
Mark the parameter unused, like it's done in this existing function:
```
bool ValidateBreakpoint(size_t size,
[[maybe_unused]] lldb::addr_t addr) override {
```
https://github.com/llvm/llvm-project/pull/174348
More information about the lldb-commits
mailing list