From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/test/Driver/darwin-iphone-defaults.m | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 clang/test/Driver/darwin-iphone-defaults.m (limited to 'clang/test/Driver/darwin-iphone-defaults.m') diff --git a/clang/test/Driver/darwin-iphone-defaults.m b/clang/test/Driver/darwin-iphone-defaults.m new file mode 100644 index 0000000..bba0cc0 --- /dev/null +++ b/clang/test/Driver/darwin-iphone-defaults.m @@ -0,0 +1,28 @@ +// RUN: %clang -target i386-apple-darwin9 -miphoneos-version-min=3.0 -arch armv7 -flto -S -o - %s | FileCheck %s + +// CHECK: @f0() ssp +// 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]; +} + -- cgit v1.2.3