diff options
author | Greg Clayton <gclayton@apple.com> | 2018-05-08 17:19:24 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2018-05-08 17:19:24 +0000 |
commit | 2550ca1e93a6caae1a46f160087f06dea669d7d9 (patch) | |
tree | 3763467ef25536bbcc3b8ae97bc99c4573569258 /lldb/source/Symbol/ObjectFile.cpp | |
parent | b07c22b081e4e6b4a636a703c8e96cc7106a1ce8 (diff) | |
download | bcm5719-llvm-2550ca1e93a6caae1a46f160087f06dea669d7d9.tar.gz bcm5719-llvm-2550ca1e93a6caae1a46f160087f06dea669d7d9.zip |
Add support to object files for accessing the .debug_types section
In an effort to make the .debug_types patch smaller, breaking out the part that reads the .debug_types from object files into a separate patch
Differential Revision: https://reviews.llvm.org/D46529
llvm-svn: 331777
Diffstat (limited to 'lldb/source/Symbol/ObjectFile.cpp')
-rw-r--r-- | lldb/source/Symbol/ObjectFile.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Symbol/ObjectFile.cpp b/lldb/source/Symbol/ObjectFile.cpp index 878f1fb7178..326e87201f3 100644 --- a/lldb/source/Symbol/ObjectFile.cpp +++ b/lldb/source/Symbol/ObjectFile.cpp @@ -359,6 +359,7 @@ AddressClass ObjectFile::GetAddressClass(addr_t file_addr) { case eSectionTypeDWARFDebugRanges: case eSectionTypeDWARFDebugStr: case eSectionTypeDWARFDebugStrOffsets: + case eSectionTypeDWARFDebugTypes: case eSectionTypeDWARFAppleNames: case eSectionTypeDWARFAppleTypes: case eSectionTypeDWARFAppleNamespaces: |