A significant number of our tests in C accidentally use functions without prototypes. This patch converts the function signatures to have a prototype for the situations where the test is not specific to K&R C declarations. e.g., void func(); becomes void func(void); This is the twelfth batch of tests being updated (the end may be in sight soon though).
23 lines
629 B
Objective-C
23 lines
629 B
Objective-C
// RUN: %clang_cc1 -fblocks -fobjc-gc -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -emit-llvm %s -o - | \
|
|
// RUN: FileCheck %s
|
|
// RUN: %clang_cc1 -fblocks -fobjc-gc -triple i386-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -emit-llvm %s -o - | \
|
|
// RUN: FileCheck %s
|
|
|
|
@interface NSObject
|
|
- copy;
|
|
@end
|
|
|
|
int main(void) {
|
|
NSObject *object = 0;
|
|
__weak __block NSObject* weak_object = object;
|
|
void (^callback) (void) = [^{
|
|
if (weak_object)
|
|
[weak_object copy];
|
|
} copy];
|
|
callback();
|
|
return 0;
|
|
}
|
|
|
|
// CHECK: call i8* @objc_read_weak
|
|
// CHECK: call i8* @objc_read_weak
|