xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/attr-strong.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 // RUN: %clang -emit-llvm -S -o %t %s
2 
3 struct s0 {
4   void *a;
5 };
6 struct s0 * __attribute__((objc_gc(strong))) g0;
7 void f0(void) {
8   g0->a = 0;
9 }
10