brintos

brintos / llvm-project-archived public Read only

0
0
Text · 548 B · c15d978 Raw
16 lines · plain
1// RUN: %clang -S -emit-llvm %s -o - -x objective-c -fobjc-runtime=gcc | FileCheck --check-prefix=GCC %s2// RUN: %clang -S -emit-llvm %s -o - -x objective-c -fobjc-runtime=gnustep-1.5 | FileCheck --check-prefix=GCC %s3// RUN: %clang -S -emit-llvm %s -o - -x objective-c -fobjc-runtime=gnustep-1.6 | FileCheck --check-prefix=GNUSTEP %s4//5@interface helloclass  {6@private int varName;7}8@property (readwrite,assign) int propName;9@end10 11@implementation helloclass12@synthesize propName = varName;13@end14// GCC-NOT: Ti,VvarName15// GNUSTEP: Ti,VvarName16