blob: f1474bc93eb590cccedc58a3727777372c7cf987 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang -emit-llvm -S -o %t %s
2
3struct s0 {
4 void *a;
5};
6struct s0 * __attribute__((objc_gc(strong))) g0;
7void f0(void) {
8 g0->a = 0;
9}