1 // RUN: %clang_cc1 -emit-llvm -fobjc-arc -g -triple x86_64-apple-darwin10 %s -o - | FileCheck %s 2 // Ensure that the line info is making sense: 3 // ARC cleanups should be at the closing '}'. 4 @protocol NSObject 5 @end 6 7 @interface NSObject <NSObject> {} 8 @end 9 10 @protocol NSCopying 11 @end 12 13 @protocol NSCoding 14 @end 15 16 typedef double CGFloat; 17 struct CGRect {}; 18 typedef struct CGRect CGRect; 19 typedef CGRect NSRect; 20 NSRect NSMakeRect(CGFloat x, CGFloat y, CGFloat w, CGFloat h); 21 @interface NSBezierPath : NSObject <NSCopying, NSCoding> 22 + (NSBezierPath *)bezierPathWithRoundedRect:(NSRect)rect xRadius:(CGFloat)xRadius yRadius:(CGFloat)yRadius; 23 @end 24 @implementation AppDelegate : NSObject {} 25 - (NSBezierPath *)_createBezierPathWithWidth:(CGFloat)width height:(CGFloat)height radius:(CGFloat)radius lineWidth:(CGFloat)lineWidth 26 { 27 NSRect rect = NSMakeRect(0, 0, width, height); 28 NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:rect xRadius:radius yRadius:radius]; 29 CGFloat pattern[2]; 30 // CHECK: define {{.*}}_createBezierPathWithWidth 31 // CHECK: load {{.*}} %path, align {{.*}}, !dbg ![[RET:[0-9]+]] 32 // CHECK: call void @objc_storeStrong{{.*}} !dbg ![[ARC1:[0-9]+]] 33 // CHECK: call {{.*}} @objc_autoreleaseReturnValue{{.*}} !dbg ![[ARC2:[0-9]+]] 34 // CHECK: ret {{.*}} !dbg ![[ARC2]] 35 // CHECK: ![[RET]] = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null} 36 return path; 37 // CHECK: ![[ARC1]] = metadata !{i32 [[@LINE+2]], i32 0, metadata !{{.*}}, null} 38 // CHECK: ![[ARC2]] = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null} 39 } 40 @end 41