diff options
Diffstat (limited to 'contrib/llvm-project/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp')
-rw-r--r-- | contrib/llvm-project/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp b/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp index 7469e7633e71..89ecc757a68f 100644 --- a/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp +++ b/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp @@ -23,7 +23,8 @@ using namespace lldb_private; ThreadMemory::ThreadMemory(Process &process, tid_t tid, const ValueObjectSP &thread_info_valobj_sp) : Thread(process, tid), m_backing_thread_sp(), - m_thread_info_valobj_sp(thread_info_valobj_sp), m_name(), m_queue() {} + m_thread_info_valobj_sp(thread_info_valobj_sp), m_name(), m_queue(), + m_register_data_addr(LLDB_INVALID_ADDRESS) {} ThreadMemory::ThreadMemory(Process &process, lldb::tid_t tid, llvm::StringRef name, llvm::StringRef queue, |