diff options
Diffstat (limited to 'source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h')
-rw-r--r-- | source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h b/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h index 6b7ad531b83bf..251a0865e7823 100644 --- a/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h +++ b/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h @@ -19,7 +19,6 @@ #include "lldb/Core/FileSpecList.h" #include "lldb/Core/RangeMap.h" #include "lldb/Host/FileSpec.h" -#include "lldb/Host/Mutex.h" #include "lldb/Symbol/ObjectFile.h" //---------------------------------------------------------------------- @@ -176,6 +175,9 @@ public: lldb::offset_t *data_offset_ptr, llvm::MachO::mach_header &header); + bool + AllowAssemblyEmulationUnwindPlans () override; + //------------------------------------------------------------------ // PluginInterface protocol //------------------------------------------------------------------ @@ -247,6 +249,7 @@ protected: FileRangeArray m_thread_context_offsets; bool m_thread_context_offsets_valid; lldb_private::FileSpecList m_reexported_dylibs; + bool m_allow_assembly_emulation_unwind_plans; }; #endif // liblldb_ObjectFileMachO_h_ |