1*f4a2713aSLionel Sambuc// RUN: %clang -S -emit-llvm %s -o - -x objective-c -fobjc-runtime=gcc | FileCheck --check-prefix=GCC %s
2*f4a2713aSLionel Sambuc// RUN: %clang -S -emit-llvm %s -o - -x objective-c -fobjc-runtime=gnustep-1.5 | FileCheck --check-prefix=GCC %s
3*f4a2713aSLionel Sambuc// RUN: %clang -S -emit-llvm %s -o - -x objective-c -fobjc-runtime=gnustep-1.6 | FileCheck --check-prefix=GNUSTEP %s
4*f4a2713aSLionel Sambuc//
5*f4a2713aSLionel Sambuc@interface helloclass  {
6*f4a2713aSLionel Sambuc@private int varName;
7*f4a2713aSLionel Sambuc}
8*f4a2713aSLionel Sambuc@property (readwrite,assign) int propName;
9*f4a2713aSLionel Sambuc@end
10*f4a2713aSLionel Sambuc
11*f4a2713aSLionel Sambuc@implementation helloclass
12*f4a2713aSLionel Sambuc@synthesize propName = varName;
13*f4a2713aSLionel Sambuc@end
14*f4a2713aSLionel Sambuc// GCC-NOT: Ti,VvarName
15*f4a2713aSLionel Sambuc// GNUSTEP: Ti,VvarName
16