get rid of extra parentheses.

llvm-svn: 190962
This commit is contained in:
Adrian Prantl 2013-09-18 22:18:17 +00:00
parent 262bcf4584
commit 7f2ef22452
1 changed files with 1 additions and 2 deletions

View File

@ -2747,9 +2747,8 @@ void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag,
DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock());
Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
return;
} else if (isa<VariableArrayType>(VD->getType())) {
} else if (isa<VariableArrayType>(VD->getType()))
Flags |= llvm::DIDescriptor::FlagIndirectVariable;
}
} else if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) {
// If VD is an anonymous union then Storage represents value for
// all union fields.