aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExpr.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2009-02-22 18:40:18 +0000
committerFariborz Jahanian <fjahanian@apple.com>2009-02-22 18:40:18 +0000
commit44baa8abba2a1552b6b50bf750a8750ab9da9f76 (patch)
tree87c697364252ff26d0f35fa50deb91ddff9c2556 /lib/CodeGen/CGExpr.cpp
parent6eef49819da450de398dcbe008066ccc9546ee31 (diff)
More objc gc work. Match gcc's treatment of ivar access
true a local pointer to objective-c object in generating write barriers. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65290 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExpr.cpp')
-rw-r--r--lib/CodeGen/CGExpr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGExpr.cpp b/lib/CodeGen/CGExpr.cpp
index 2348a11f7b..c96265242a 100644
--- a/lib/CodeGen/CGExpr.cpp
+++ b/lib/CodeGen/CGExpr.cpp
@@ -782,7 +782,7 @@ LValue CodeGenFunction::EmitArraySubscriptExpr(const ArraySubscriptExpr *E) {
getContext().getObjCGCAttrKind(T));
if (getContext().getLangOptions().ObjC1 &&
getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
- LValue::SetObjCNonGC(LV, !E->hasGlobalStorage());
+ LValue::SetObjCNonGC(LV, !E->isOBJCGCCandidate());
return LV;
}