2011-10-02 09:16:38 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-fragile-abi -fobjc-gc -g -emit-llvm -o - %s
|
|
|
|
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-fragile-abi -fobjc-gc -g -emit-llvm -o - %s
|
|
|
|
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-fragile-abi -fobjc-gc -g -emit-llvm -o - %s
|
|
|
|
// RUN: %clang_cc1 -x objective-c++ -triple i386-apple-darwin9 -fobjc-fragile-abi -fobjc-gc -g -emit-llvm -o - %s
|
2009-09-25 10:18:37 +08:00
|
|
|
|
|
|
|
// rdar://7252252
|
|
|
|
@interface Loop {
|
|
|
|
@public
|
|
|
|
__weak Loop *_loop;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Loop @end
|
|
|
|
|
|
|
|
void loop(Loop *L) {
|
|
|
|
L->_loop = 0;
|
|
|
|
}
|