[Lldb-commits] [lldb] [lldb] Add support for large watchpoints in lldb (PR #79962)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 1 06:12:14 PST 2024
================
@@ -113,7 +114,8 @@ bool WatchpointResource::ShouldStop(StoppointCallbackContext *context) {
}
void WatchpointResource::Dump(Stream *s) const {
- return; // LWP_TODO
+ s->Printf("addr = 0x%8.8" PRIx64 " size = %zu", m_addr, m_size);
+ return;
----------------
DavidSpickett wrote:
Don't need a return, unless this thing is supposed to return something?
https://github.com/llvm/llvm-project/pull/79962
More information about the lldb-commits
mailing list