From 529677703214454e85c9089440c1c77200c53772 Mon Sep 17 00:00:00 2001 From: Fariborz Jahanian Date: Wed, 27 May 2009 19:48:48 +0000 Subject: [PATCH] Change a confusing variable name. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72491 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CGExpr.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/CodeGen/CGExpr.cpp b/lib/CodeGen/CGExpr.cpp index ff61d5ba1c..e965073c7f 100644 --- a/lib/CodeGen/CGExpr.cpp +++ b/lib/CodeGen/CGExpr.cpp @@ -662,7 +662,7 @@ LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) { if (VD && (VD->isBlockVarDecl() || isa(VD) || isa(VD))) { LValue LV; - bool GCable = VD->hasLocalStorage() && !VD->hasAttr(); + bool NonGCable = VD->hasLocalStorage() && !VD->hasAttr(); if (VD->hasExternalStorage()) { llvm::Value *V = CGM.GetAddrOfGlobalVar(VD); if (VD->getType()->isReferenceType()) @@ -676,7 +676,7 @@ LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) { // local variables do not get their gc attribute set. QualType::GCAttrTypes attr = QualType::GCNone; // local static? - if (!GCable) + if (!NonGCable) attr = getContext().getObjCGCAttrKind(E->getType()); if (VD->hasAttr()) { bool needsCopyDispose = BlockRequiresCopying(VD->getType()); @@ -693,7 +693,7 @@ LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) { V = Builder.CreateLoad(V, "tmp"); LV = LValue::MakeAddr(V, E->getType().getCVRQualifiers(), attr); } - LValue::SetObjCNonGC(LV, GCable); + LValue::SetObjCNonGC(LV, NonGCable); return LV; } else if (VD && VD->isFileVarDecl()) { llvm::Value *V = CGM.GetAddrOfGlobalVar(VD); -- 2.40.0