Fix the clang-wpa example.
[clang.git] / test / CodeGenObjC / attr-strong.c
blobf1474bc93eb590cccedc58a3727777372c7cf987
1 // RUN: %clang -emit-llvm -S -o %t %s
3 struct s0 {
4 void *a;
5 };
6 struct s0 * __attribute__((objc_gc(strong))) g0;
7 void f0(void) {
8 g0->a = 0;