1*f4a2713aSLionel Sambuc // RUN: %clang -emit-llvm -S -o %t %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc struct s0 { 4*f4a2713aSLionel Sambuc void *a; 5*f4a2713aSLionel Sambuc }; 6*f4a2713aSLionel Sambuc struct s0 * __attribute__((objc_gc(strong))) g0; f0(void)7*f4a2713aSLionel Sambucvoid f0(void) { 8*f4a2713aSLionel Sambuc g0->a = 0; 9*f4a2713aSLionel Sambuc } 10