From: Adrian Prantl Date: Wed, 18 Sep 2013 22:18:17 +0000 (+0000) Subject: get rid of extra parentheses. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=39232cd098f94e9e5e850eb2adb3a97372c6cf38;p=clang get rid of extra parentheses. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@190962 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index 23b73a31f0..eebafe40bb 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -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(VD->getType())) { + } else if (isa(VD->getType())) Flags |= llvm::DIDescriptor::FlagIndirectVariable; - } } else if (const RecordType *RT = dyn_cast(VD->getType())) { // If VD is an anonymous union then Storage represents value for // all union fields.