blob: be05ec2fcd8e941e8422a76378e1f3f72e0e9657 [file] [log] [blame]
Adrian Prantl7c731f52013-05-30 18:12:23 +00001// 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
16typedef double CGFloat;
17struct CGRect {};
18typedef struct CGRect CGRect;
19typedef CGRect NSRect;
20NSRect 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