diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2008-11-19 18:38:10 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2008-11-19 18:38:10 +0000 |
commit | 0c43f2681b13e32171f883b6e874da1a6ae340e9 (patch) | |
tree | 8ceef9a8c1c971a002f4a783a599247e471c96d0 | |
parent | 051c13a4a99c651e404b4a3160e1173b427eee17 (diff) |
More of objective-c's gc code-gen. Treat objective-c
objects as __strong when attribute unspecified.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59654 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/CGExpr.cpp | 6 | ||||
-rw-r--r-- | lib/CodeGen/CGValue.h | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/lib/CodeGen/CGExpr.cpp b/lib/CodeGen/CGExpr.cpp index 3c283605e1..9e4d66a947 100644 --- a/lib/CodeGen/CGExpr.cpp +++ b/lib/CodeGen/CGExpr.cpp @@ -542,6 +542,12 @@ LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) { ObjCGCAttr::GCAttrTypes attrType = A->getType(); LValue::SetObjCType(attrType == ObjCGCAttr::Weak, attrType == ObjCGCAttr::Strong, LV); } + else if (CGM.getLangOptions().ObjC1 && + CGM.getLangOptions().getGCMode() != LangOptions::NonGC) { + QualType ExprTy = E->getType(); + if (getContext().isObjCObjectPointerType(ExprTy)) + LValue::SetObjCType(false, true, LV); + } return LV; } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) { return LValue::MakeAddr(CGM.GetAddrOfFunction(FD), diff --git a/lib/CodeGen/CGValue.h b/lib/CodeGen/CGValue.h index 1c60ebf14e..5b6283f3c6 100644 --- a/lib/CodeGen/CGValue.h +++ b/lib/CodeGen/CGValue.h @@ -162,10 +162,11 @@ public: bool isObjCWeak() const { return ObjCType == Weak; } bool isObjCStrong() const { return ObjCType == Strong; } - static void SetObjCType(unsigned WeakVal, unsigned StrongVal, LValue& R) { - if (WeakVal) + static void SetObjCType(bool isWeak, bool isStrong, LValue& R) { + assert(!(isWeak == true && isStrong == true)); + if (isWeak) R.ObjCType = Weak; - else if (StrongVal) + else if (isStrong) R.ObjCType = Strong; } |