increasingly prevailing case to the point that new features like ARC don't even support the fragile ABI anymore. This required a little bit of reshuffling with exceptions because a check was assuming that ObjCNonFragileABI was only being set in ObjC mode, and that's actually a bit obnoxious to do. Most, though, it involved a perl script to translate a ton of test cases. Mostly no functionality change for driver users, although there are corner cases with disabling language-specific exceptions that we should handle more correctly now. llvm-svn: 140957
48 lines
1.6 KiB
Objective-C
48 lines
1.6 KiB
Objective-C
// RUN: %clang_cc1 -fobjc-fragile-abi -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK-MAC
|
|
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK-MAC-NF
|
|
// RUN: %clang_cc1 -fobjc-fragile-abi -fgnu-runtime -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK-GNU
|
|
// RUN: %clang_cc1 -fgnu-runtime -emit-llvm -o - %s | FileCheck %s -check-prefix CHECK-GNU-NF
|
|
|
|
typedef struct {
|
|
int x;
|
|
int y;
|
|
int z[10];
|
|
} MyPoint;
|
|
|
|
void f0(id a) {
|
|
int i;
|
|
MyPoint pt = { 1, 2};
|
|
|
|
// CHECK-MAC: call {{.*}} @objc_msgSend to
|
|
// CHECK-MAC-NF: call {{.*}} @objc_msgSend to
|
|
// CHECK-GNU: call {{.*}} @objc_msg_lookup(
|
|
// CHECK-GNU-NF: call {{.*}} @objc_msg_lookup_sender(
|
|
[a print0];
|
|
|
|
// CHECK-MAC: call {{.*}} @objc_msgSend to
|
|
// CHECK-MAC-NF: call {{.*}} @objc_msgSend to
|
|
// CHECK-GNU: call {{.*}} @objc_msg_lookup(
|
|
// CHECK-GNU-NF: call {{.*}} @objc_msg_lookup_sender(
|
|
[a print1: 10];
|
|
|
|
// CHECK-MAC: call {{.*}} @objc_msgSend to
|
|
// CHECK-MAC-NF: call {{.*}} @objc_msgSend to
|
|
// CHECK-GNU: call {{.*}} @objc_msg_lookup(
|
|
// CHECK-GNU-NF: call {{.*}} @objc_msg_lookup_sender(
|
|
[a print2: 10 and: "hello" and: 2.2];
|
|
|
|
// CHECK-MAC: call {{.*}} @objc_msgSend to
|
|
// CHECK-MAC-NF: call {{.*}} @objc_msgSend to
|
|
// CHECK-GNU: call {{.*}} @objc_msg_lookup(
|
|
// CHECK-GNU-NF: call {{.*}} @objc_msg_lookup_sender(
|
|
[a takeStruct: pt ];
|
|
|
|
void *s = @selector(print0);
|
|
for (i=0; i<2; ++i)
|
|
// CHECK-MAC: call {{.*}} @objc_msgSend to
|
|
// CHECK-MAC-NF: call {{.*}} @objc_msgSend to
|
|
// CHECK-GNU: call {{.*}} @objc_msg_lookup(
|
|
// CHECK-GNU-NF: call {{.*}} @objc_msg_lookup_sender(
|
|
[a performSelector:s];
|
|
}
|