[Lldb-commits] [PATCH] D84257: [lldb] Don't use hardware index to determine whether a breakpoint site is hardware
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 21 23:30:41 PDT 2020
JDevlieghere added inline comments.
================
Comment at: lldb/source/Breakpoint/BreakpointLocation.cpp:73
+ if (m_bp_site_sp)
+ return m_bp_site_sp->IsHardware();
+
----------------
Should we sanity check that this is true when `m_hardware_index != LLDB_INVALID_INDEX32`?
```lldbassert(m_hardware_index == LLDB_INVALID_INDEX32 || m_bp_site_sp->IsHardware());```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D84257/new/
https://reviews.llvm.org/D84257
More information about the lldb-commits
mailing list