diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-13 21:47:32 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-13 21:47:32 +0000 |
commit | eaa7433c850c5c71ce9708cd3e62e1e65bb05db9 (patch) | |
tree | 75a69272156d0bf672310c893c01bad51ddbaac1 /llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp | |
parent | 3eb2470eedab12a9e0a04c753ec360afac0a077c (diff) | |
download | bcm5719-llvm-eaa7433c850c5c71ce9708cd3e62e1e65bb05db9.tar.gz bcm5719-llvm-eaa7433c850c5c71ce9708cd3e62e1e65bb05db9.zip |
Style & indentation tweaks.
llvm-svn: 139646
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp b/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp index 5813a55f2fe..bfe89dd3262 100644 --- a/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp @@ -351,8 +351,7 @@ DWARFDebugInfoEntryMinimal::getAttributeValue(const DWARFCompileUnit *cu, const uint32_t attr_offset = offset; form_value = DWARFFormValue(AbbrevDecl->getFormByIndex(idx)); - if (form_value.extractValue(debug_info_data, &offset, cu)) - { + if (form_value.extractValue(debug_info_data, &offset, cu)) { if (end_attr_offset_ptr) *end_attr_offset_ptr = offset; return attr_offset; |