freebsd-dev/test/CodeGenObjC/objc2-weak-ivar-debug.m

18 lines
491 B
Mathematica
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-gc -g -emit-llvm -o - %s
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-gc -g -emit-llvm -o - %s
2010-05-27 15:17:06 +00:00
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-gc -g -emit-llvm -o - %s
// RUN: %clang_cc1 -x objective-c++ -triple i386-apple-darwin9 -fobjc-gc -g -emit-llvm -o - %s
2009-10-14 18:03:49 +00:00
// rdar://7252252
@interface Loop {
@public
__weak Loop *_loop;
}
@end
@implementation Loop @end
void loop(Loop *L) {
L->_loop = 0;
}