Remove some parens. No functional change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187872 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2013-08-07 08:35:10 +00:00
parent b19982c42b
commit f76e118cf8

View File

@ -1087,10 +1087,10 @@ static bool isContainedInAnonNamespace(DIE *Die) {
/// Test if the current CU language is C++ and that we have /// Test if the current CU language is C++ and that we have
/// a named type that is not contained in an anonymous namespace. /// a named type that is not contained in an anonymous namespace.
static bool shouldAddODRHash(CompileUnit *CU, DIE *Die) { static bool shouldAddODRHash(CompileUnit *CU, DIE *Die) {
return (CU->getLanguage() == dwarf::DW_LANG_C_plus_plus && return CU->getLanguage() == dwarf::DW_LANG_C_plus_plus &&
getDIEStringAttr(Die, dwarf::DW_AT_name) != "" && getDIEStringAttr(Die, dwarf::DW_AT_name) != "" &&
!isContainedInAnonNamespace(Die)); !isContainedInAnonNamespace(Die);
} }
void DwarfDebug::finalizeModuleInfo() { void DwarfDebug::finalizeModuleInfo() {
// Collect info for variables that were optimized out. // Collect info for variables that were optimized out.