17 lines · plain
1// RUN: %clang_cc1 %s -emit-llvm -triple x86_64-apple-darwin -o - | FileCheck %s2 3@interface NSDictionary @end4@interface NSMutableDictionary : NSDictionary@end@interface CalDAVAddManagedAttachmentsTaskGroup {5 NSMutableDictionary *_filenamesToServerLocation; 6}7- (NSDictionary *)filenamesToServerLocation;8@property (readwrite, retain) NSMutableDictionary *filenamesToServerLocation;9@end 10 11@implementation CalDAVAddManagedAttachmentsTaskGroup12@synthesize filenamesToServerLocation=_filenamesToServerLocation;13@end14 15// CHECK: [[CALL:%.*]] = tail call ptr @objc_getProperty16// CHECK: ret ptr [[CALL:%.*]]17