You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: %clang -emit-llvm -S -o %t %s
|
|
|
|
struct s0 {
|
|
void *a;
|
|
};
|
|
struct s0 * __attribute__((objc_gc(strong))) g0;
|
|
void f0(void) {
|
|
g0->a = 0;
|
|
}
|