[Lldb-commits] [lldb] 57835d0 - [lldb] Initialize some bitfields in FuncUnwinders.cpp
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Jan 7 09:09:32 PST 2020
Author: Pavel Labath
Date: 2020-01-07T18:01:59+01:00
New Revision: 57835d0198418ca6e397f4b0a50dc6057d93c04c
URL: https://github.com/llvm/llvm-project/commit/57835d0198418ca6e397f4b0a50dc6057d93c04c
DIFF: https://github.com/llvm/llvm-project/commit/57835d0198418ca6e397f4b0a50dc6057d93c04c.diff
LOG: [lldb] Initialize some bitfields in FuncUnwinders.cpp
This got flagged by msan.
Added:
Modified:
lldb/source/Symbol/FuncUnwinders.cpp
Removed:
################################################################################
diff --git a/lldb/source/Symbol/FuncUnwinders.cpp b/lldb/source/Symbol/FuncUnwinders.cpp
index f609bf7821e1..7a6f3cefea66 100644
--- a/lldb/source/Symbol/FuncUnwinders.cpp
+++ b/lldb/source/Symbol/FuncUnwinders.cpp
@@ -41,7 +41,9 @@ FuncUnwinders::FuncUnwinders(UnwindTable &unwind_table, AddressRange range)
m_unwind_plan_arch_default_sp(),
m_unwind_plan_arch_default_at_func_entry_sp(),
m_tried_unwind_plan_assembly(false), m_tried_unwind_plan_eh_frame(false),
+ m_tried_unwind_plan_object_file(false),
m_tried_unwind_plan_debug_frame(false),
+ m_tried_unwind_plan_object_file_augmented(false),
m_tried_unwind_plan_eh_frame_augmented(false),
m_tried_unwind_plan_debug_frame_augmented(false),
m_tried_unwind_plan_compact_unwind(false),
More information about the lldb-commits
mailing list