blob: f1474bc93eb590cccedc58a3727777372c7cf987 [file] [log] [blame]
Daniel Dunbar80737ad2009-12-15 22:01:24 +00001// RUN: %clang -emit-llvm -S -o %t %s
Daniel Dunbarf3ef07c2009-04-18 08:54:40 +00002
3struct s0 {
4 void *a;
5};
6struct s0 * __attribute__((objc_gc(strong))) g0;
7void f0(void) {
8 g0->a = 0;
9}