r190962 - get rid of extra parentheses.

Adrian Prantl aprantl at apple.com
Wed Sep 18 15:18:17 PDT 2013


Author: adrian
Date: Wed Sep 18 17:18:17 2013
New Revision: 190962

URL: http://llvm.org/viewvc/llvm-project?rev=190962&view=rev
Log:
get rid of extra parentheses.

Modified:
    cfe/trunk/lib/CodeGen/CGDebugInfo.cpp

Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.cpp?rev=190962&r1=190961&r2=190962&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDebugInfo.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.cpp Wed Sep 18 17:18:17 2013
@@ -2747,9 +2747,8 @@ void CGDebugInfo::EmitDeclare(const VarD
         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.





More information about the cfe-commits mailing list