commit | 648f3c7efa0e7d760a668686066adb4e2a91ca6d | [log] [tgz] |
---|---|---|
author | Tamas Berghammer <tberghammer@google.com> | Wed Sep 30 13:50:14 2015 +0000 |
committer | Tamas Berghammer <tberghammer@google.com> | Wed Sep 30 13:50:14 2015 +0000 |
tree | c310c8f4f3d7142da83f5b2ca42783b4b5f94b55 | |
parent | e6e082348d5125cbf7a0027d208f28d9f12f2832 [diff] [blame] |
Add support for .ARM.exidx unwind information .ARM.exidx/.ARM.extab sections contain unwind information used on ARM architecture from unwinding from an exception. Differential revision: http://reviews.llvm.org/D13245 llvm-svn: 248903
diff --git a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp index 855a6db..8ccca39 100644 --- a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp +++ b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
@@ -1342,6 +1342,8 @@ return eAddressClassDebug; case eSectionTypeEHFrame: + case eSectionTypeARMexidx: + case eSectionTypeARMextab: case eSectionTypeCompactUnwind: return eAddressClassRuntime;