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
21 lines
691 B
Objective-C
21 lines
691 B
Objective-C
// RUN: %clang_cc1 -triple armv7-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -o - %s | FileCheck %s
|
|
|
|
id test0(void) {
|
|
extern id test0_helper(void);
|
|
// CHECK: [[T0:%.*]] = call arm_aapcscc i8* @test0_helper()
|
|
// CHECK-NEXT: ret i8* [[T0]]
|
|
return test0_helper();
|
|
}
|
|
|
|
void test1(void) {
|
|
extern id test1_helper(void);
|
|
// CHECK: [[T0:%.*]] = call arm_aapcscc i8* @test1_helper()
|
|
// CHECK-NEXT: call void asm sideeffect "mov\09r7, r7
|
|
// CHECK-NEXT: [[T1:%.*]] = call i8* @objc_retainAutoreleasedReturnValue(i8* [[T0]])
|
|
// CHECK-NEXT: store i8* [[T1]],
|
|
// CHECK-NEXT: load
|
|
// CHECK-NEXT: call void @objc_release
|
|
// CHECK-NEXT: ret void
|
|
id x = test1_helper();
|
|
}
|