Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
source/Target/StopInfo.cpp | ||
---|---|---|
840 | Sorry, I missed else part here. |
Comment Actions
Can we clean up the value in lldb-server prior to sending it up to the debugger so that the debugger doesn't have to worry about architecture specific bits in Watchpoint.cpp? That would be a better way to fix this.
source/Breakpoint/Watchpoint.cpp | ||
---|---|---|
158–172 | Can this not be done anywhere before it gets to this point? Like maybe down in lldb-server when it is reporting the watchpoint hit? Then this can be done with "#if define(MIPS)" since lldb-server is compiled for each architecture natively. | |
source/Target/StopInfo.cpp | ||
840 | Add else { m_should_stop = false; } |
Can this not be done anywhere before it gets to this point? Like maybe down in lldb-server when it is reporting the watchpoint hit? Then this can be done with "#if define(MIPS)" since lldb-server is compiled for each architecture natively.