Add clarifying parens.

llvm-svn: 86457
This commit is contained in:
Daniel Dunbar 2009-11-08 09:46:46 +00:00
parent 3b339a3aa3
commit 7e215ea165

View File

@ -815,7 +815,7 @@ static void setObjCGCLValueClass(const ASTContext &Ctx, const Expr *E,
static LValue EmitGlobalVarDeclLValue(CodeGenFunction &CGF,
const Expr *E, const VarDecl *VD) {
assert(VD->hasExternalStorage() || VD->isFileVarDecl() &&
assert((VD->hasExternalStorage() || VD->isFileVarDecl()) &&
"Var decl must have external storage or be a file var decl!");
llvm::Value *V = CGF.CGM.GetAddrOfGlobalVar(VD);