blob: ab20f3e9baf4b1d3d5d82605545c62f7b108e1b9 [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]+]]
Stephen Hines651f13c2014-04-23 16:59:28 -070032 // CHECK: call void @objc_storeStrong{{.*}} !dbg ![[ARC:[0-9]+]]
33 // CHECK: call {{.*}} @objc_autoreleaseReturnValue{{.*}} !dbg ![[ARC]]
34 // CHECK: ret {{.*}} !dbg ![[ARC]]
Stephen Hines0e2c34f2015-03-23 12:09:02 -070035 // CHECK: ![[RET]] = !MDLocation(line: [[@LINE+1]], scope: !{{.*}})
Adrian Prantl7c731f52013-05-30 18:12:23 +000036 return path;
Stephen Hines0e2c34f2015-03-23 12:09:02 -070037 // CHECK: ![[ARC]] = !MDLocation(line: [[@LINE+1]], scope: !{{.*}})
Adrian Prantl7c731f52013-05-30 18:12:23 +000038}
39@end