Files
clang-p2996/clang/test/Driver/darwin-iphone-defaults.m
Mehdi Amini 6aa9e9b41a IRGen: Add optnone attribute on function during O0
Amongst other, this will help LTO to correctly handle/honor files
compiled with O0, helping debugging failures.
It also seems in line with how we handle other options, like how
-fnoinline adds the appropriate attribute as well.

Differential Revision: https://reviews.llvm.org/D28404

llvm-svn: 304127
2017-05-29 05:38:20 +00:00

30 lines
553 B
Objective-C

// RUN: %clang -target i386-apple-darwin9 -miphoneos-version-min=3.0 -arch armv7 -stdlib=platform -flto -S -o - %s | FileCheck %s
// CHECK: @f0() [[F0:#[0-9]+]]
// CHECK: @__f0_block_invoke
// CHECK: void @f1
// CHECK-NOT: msgSend_fixup_alloc
// CHECK: OBJC_SELECTOR_REFERENCES
int f0() {
return ^(){ return 0; }();
}
@interface I0
@property (assign) int p0;
@end
@implementation I0
@synthesize p0 = __sythesized_p0;
@end
@interface I1
+(id) alloc;
@end
void f1() {
[I1 alloc];
}
// CHECK: attributes [[F0]] = { noinline optnone ssp{{.*}} }