local array of objects are non-gc'able.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65251 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CGExpr.cpp b/lib/CodeGen/CGExpr.cpp
index a9db6db..2348a11 100644
--- a/lib/CodeGen/CGExpr.cpp
+++ b/lib/CodeGen/CGExpr.cpp
@@ -776,10 +776,14 @@
   QualType T = E->getBase()->getType();
   QualType ExprTy = getContext().getCanonicalType(T);
   T = T->getAsPointerType()->getPointeeType();
-
-  return LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
+  LValue LV = 
+           LValue::MakeAddr(Builder.CreateGEP(Base, Idx, "arrayidx"),
            ExprTy->getAsPointerType()->getPointeeType().getCVRQualifiers(),
            getContext().getObjCGCAttrKind(T));
+  if (getContext().getLangOptions().ObjC1 &&
+      getContext().getLangOptions().getGCMode() != LangOptions::NonGC)
+    LValue::SetObjCNonGC(LV, !E->hasGlobalStorage());
+  return LV;
 }
 
 static