Daniel Dunbar | 80737ad | 2009-12-15 22:01:24 +0000 | [diff] [blame] | 1 | // RUN: %clang -emit-llvm -S -o %t %s |
Daniel Dunbar | f3ef07c | 2009-04-18 08:54:40 +0000 | [diff] [blame] | 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 | } |