diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp b/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp index 092caa5..9d8d924 100644 --- a/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp +++ b/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp @@ -23,8 +23,8 @@ using namespace lldb_private; StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, bool hardware) : m_loc_id(bid), m_addr(addr), - m_hw_preferred(hardware), - m_hw_index(LLDB_INVALID_INDEX32), + m_hardware(hardware), + m_hardware_index(LLDB_INVALID_INDEX32), m_byte_size(0), m_hit_count(0) { @@ -33,8 +33,8 @@ StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, bool hardware StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, uint32_t byte_size, bool hardware) : m_loc_id(bid), m_addr(addr), - m_hw_preferred(hardware), - m_hw_index(LLDB_INVALID_INDEX32), + m_hardware(hardware), + m_hardware_index(LLDB_INVALID_INDEX32), m_byte_size(byte_size), m_hit_count(0) { |