diff options
author | Zachary Turner <zturner@google.com> | 2019-03-19 20:08:56 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2019-03-19 20:08:56 +0000 |
commit | 611d1f98c587b85b4eb60559ff774d73a34b102b (patch) | |
tree | 36548a43b79f32d93e4d231a010dede78bd2b79a /lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp | |
parent | 6271606969e276f48c6965f31a46acf54e476e65 (diff) | |
download | bcm5719-llvm-611d1f98c587b85b4eb60559ff774d73a34b102b.tar.gz bcm5719-llvm-611d1f98c587b85b4eb60559ff774d73a34b102b.zip |
Delete more dead code.
All of this is code that is unreferenced. Removing as much of
this as possible makes it more easy to determine what functionality
is missing and/or shared between LLVM and LLDB's DWARF interfaces.
llvm-svn: 356509
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp')
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp b/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp index d1ebe3c3f54..6128163a292 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp @@ -85,5 +85,5 @@ DWARFAbbreviationDeclaration::FindAttributeIndex(dw_attr_t attr) const { bool DWARFAbbreviationDeclaration:: operator==(const DWARFAbbreviationDeclaration &rhs) const { return Tag() == rhs.Tag() && HasChildren() == rhs.HasChildren() && - Attributes() == rhs.Attributes(); + m_attributes == rhs.m_attributes; } |