diff options
author | Greg Clayton <gclayton@apple.com> | 2015-07-27 23:21:05 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2015-07-27 23:21:05 +0000 |
commit | a381e10518c6457104d343655f128a6d625789a3 (patch) | |
tree | 4a9accd5ce4b5c5a819c5d4ff91eb9ce287b58a3 /lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h | |
parent | 4746c2fcdb2e19dc62811c6e2e5782697b5f7c4d (diff) | |
download | bcm5719-llvm-a381e10518c6457104d343655f128a6d625789a3.tar.gz bcm5719-llvm-a381e10518c6457104d343655f128a6d625789a3.zip |
Make sure we detect symbols in the new __DATA_DIRTY and __DATA_CONST segments and classify them correctly.
<rdar://problem/20942073>
llvm-svn: 243344
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h index eb8c7073dac..d04db03c554 100644 --- a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h +++ b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h @@ -223,6 +223,8 @@ protected: llvm::MachO::mach_header m_header; static const lldb_private::ConstString &GetSegmentNameTEXT(); static const lldb_private::ConstString &GetSegmentNameDATA(); + static const lldb_private::ConstString &GetSegmentNameDATA_DIRTY(); + static const lldb_private::ConstString &GetSegmentNameDATA_CONST(); static const lldb_private::ConstString &GetSegmentNameOBJC(); static const lldb_private::ConstString &GetSegmentNameLINKEDIT(); static const lldb_private::ConstString &GetSectionNameEHFrame(); |