diff options
author | George Rimar <grimar@accesssoftek.com> | 2018-09-13 17:06:47 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2018-09-13 17:06:47 +0000 |
commit | c6c7bfc4d2bc37f55f57504c19d47deb7645dd76 (patch) | |
tree | 6b91de969146aa3ee45fefe56ad20b2c0a9ac672 /lldb/source/Symbol/ObjectFile.cpp | |
parent | f353ae184877a2d78aaa1f63646709de54fa0e76 (diff) | |
download | bcm5719-llvm-c6c7bfc4d2bc37f55f57504c19d47deb7645dd76.tar.gz bcm5719-llvm-c6c7bfc4d2bc37f55f57504c19d47deb7645dd76.zip |
[LLDB] - Improved DWARF5 support.
This patch improves the support of DWARF5.
Particularly the reporting of source code locations.
Differential revision: https://reviews.llvm.org/D51935
llvm-svn: 342153
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 59012b1f826..fe80b258e7a 100644 --- a/lldb/source/Symbol/ObjectFile.cpp +++ b/lldb/source/Symbol/ObjectFile.cpp @@ -350,6 +350,7 @@ AddressClass ObjectFile::GetAddressClass(addr_t file_addr) { case eSectionTypeDWARFDebugFrame: case eSectionTypeDWARFDebugInfo: case eSectionTypeDWARFDebugLine: + case eSectionTypeDWARFDebugLineStr: case eSectionTypeDWARFDebugLoc: case eSectionTypeDWARFDebugMacInfo: case eSectionTypeDWARFDebugMacro: |