summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
diff options
context:
space:
mode:
authorPavel Labath <pavel@labath.sk>2019-05-15 07:45:40 +0000
committerPavel Labath <pavel@labath.sk>2019-05-15 07:45:40 +0000
commit041f40e5daf35842f67ab40eaa1f29e99727b736 (patch)
tree497466f4ca68f6fa3db7ac202553eafaf15fc998 /lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
parent4c1d6ee83dd0bf1cc24d85612a017b70350d9118 (diff)
downloadbcm5719-llvm-041f40e5daf35842f67ab40eaa1f29e99727b736.tar.gz
bcm5719-llvm-041f40e5daf35842f67ab40eaa1f29e99727b736.zip
DWARF: s/CompileUnit/Unit/ in DWARFFormValue
The class has been converted to use DWARFUnit, but a number of uses of the words compile unit remained. This removes all such references Get/SetCompileUnit becomes Get/SetUnit, and m_cu becomes m_unit. llvm-svn: 360754
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp')
-rw-r--r--lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
index 1cb1a252924..72fd939c566 100644
--- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
+++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
@@ -833,7 +833,7 @@ dw_offset_t DWARFDebugInfoEntry::GetAttributeValue(
debug_info_data, &offset, cu);
const dw_offset_t attr_offset = offset;
- form_value.SetCompileUnit(cu);
+ form_value.SetUnit(cu);
form_value.SetForm(abbrevDecl->GetFormByIndex(idx));
if (form_value.ExtractValue(debug_info_data, &offset)) {
if (end_attr_offset_ptr)
OpenPOWER on IntegriCloud