brintos

brintos / llvm-project-archived public Read only

0
0
Text · 611 B · e4a8bf8 Raw
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