llvm-project/clang/test/CodeGenObjC/objc-read-weak-byref.m
Tim Northover 19ae1175ae Fix FileCheck --check-prefix lines.
Various tests had sprung up over the years which had --check-prefix=ABC on the
RUN line, but "CHECK-ABC:" later on. This happened to work before, but was
strictly incorrect. FileCheck is getting stricter soon though.

Patch by Ron Ofir.

llvm-svn: 188174
2013-08-12 12:51:05 +00:00

27 lines
860 B
Objective-C

// REQUIRES: x86-registered-target,x86-64-registered-target
// RUN: %clang_cc1 -fblocks -fobjc-gc -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -S %s -o %t-64.s
// RUN: FileCheck -check-prefix CHECK-LP64 --input-file=%t-64.s %s
// RUN: %clang_cc1 -fblocks -fobjc-gc -triple i386-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -S %s -o %t-32.s
// RUN: FileCheck -check-prefix CHECK-LP32 --input-file=%t-32.s %s
@interface NSObject
- copy;
@end
int main() {
NSObject *object = 0;
__weak __block NSObject* weak_object = object;
void (^callback) (void) = [^{
if (weak_object)
[weak_object copy];
} copy];
callback();
return 0;
}
// CHECK-LP64: callq _objc_read_weak
// CHECK-LP64: callq _objc_read_weak
// CHECK-LP32: calll L_objc_read_weak
// CHECK-LP32: calll L_objc_read_weak