1// RUN: %clang_cc1 -emit-llvm -fobjc-arc -debug-info-kind=limited -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 @llvm.objc.storeStrong{{.*}} !dbg ![[ARC:[0-9]+]]
33  // CHECK: call {{.*}} @llvm.objc.autoreleaseReturnValue{{.*}} !dbg ![[ARC]]
34  // CHECK: ret {{.*}} !dbg ![[ARC]]
35  // CHECK: ![[RET]] = !DILocation(line: [[@LINE+1]], scope: !{{.*}})
36  return path;
37  // CHECK: ![[ARC]] = !DILocation(line: [[@LINE+1]], scope: !{{.*}})
38}
39@end
40