diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-10-18 07:13:32 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-10-18 07:13:32 +0000 |
commit | 8d433bd458b37327e2fa979a3234762f206b3467 (patch) | |
tree | 8d52d7df8554fec081b4240c8ee69bba3caf6948 /lib | |
parent | d07a8a2491556243f2fa5c3c2567c532b45f0acd (diff) | |
download | external_llvm-8d433bd458b37327e2fa979a3234762f206b3467.zip external_llvm-8d433bd458b37327e2fa979a3234762f206b3467.tar.gz external_llvm-8d433bd458b37327e2fa979a3234762f206b3467.tar.bz2 |
[DebugInfo] Remove unneeded struct member and hide struct definition. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192954 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/DebugInfo/DWARFFormValue.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/DebugInfo/DWARFFormValue.cpp b/lib/DebugInfo/DWARFFormValue.cpp index 3867249..0dddb7e 100644 --- a/lib/DebugInfo/DWARFFormValue.cpp +++ b/lib/DebugInfo/DWARFFormValue.cpp @@ -184,7 +184,6 @@ bool DWARFFormValue::extractValue(DataExtractor data, uint32_t *offset_ptr, case DW_FORM_GNU_addr_index: case DW_FORM_GNU_str_index: Value.uval = data.getULEB128(offset_ptr); - Value.IsDWOIndex = true; break; default: return false; @@ -441,7 +440,7 @@ const char *DWARFFormValue::getAsCString(const DWARFUnit *CU) const { if (!CU) return NULL; uint32_t Offset = Value.uval; - if (Value.IsDWOIndex) { + if (Form == DW_FORM_GNU_str_index) { uint32_t StrOffset; if (!CU->getStringOffsetSectionItem(Offset, StrOffset)) return NULL; @@ -453,7 +452,7 @@ const char *DWARFFormValue::getAsCString(const DWARFUnit *CU) const { uint64_t DWARFFormValue::getAsAddress(const DWARFUnit *CU) const { if (!CU) return 0; - if (Value.IsDWOIndex) { + if (Form == DW_FORM_GNU_addr_index) { uint32_t Index = Value.uval; uint64_t Address; if (!CU->getAddrOffsetSectionItem(Index, Address)) |