annotate clang/test/CodeGenObjC/prop-metadata-gnu.m @ 236:c4bab56944e8 llvm-original

LLVM 16
author kono
date Wed, 09 Nov 2022 17:45:10 +0900
parents 1d019706d866
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // RUN: %clang -S -emit-llvm %s -o - -x objective-c -fobjc-runtime=gcc | FileCheck --check-prefix=GCC %s
anatofuz
parents:
diff changeset
2 // RUN: %clang -S -emit-llvm %s -o - -x objective-c -fobjc-runtime=gnustep-1.5 | FileCheck --check-prefix=GCC %s
anatofuz
parents:
diff changeset
3 // RUN: %clang -S -emit-llvm %s -o - -x objective-c -fobjc-runtime=gnustep-1.6 | FileCheck --check-prefix=GNUSTEP %s
anatofuz
parents:
diff changeset
4 //
anatofuz
parents:
diff changeset
5 @interface helloclass {
anatofuz
parents:
diff changeset
6 @private int varName;
anatofuz
parents:
diff changeset
7 }
anatofuz
parents:
diff changeset
8 @property (readwrite,assign) int propName;
anatofuz
parents:
diff changeset
9 @end
anatofuz
parents:
diff changeset
10
anatofuz
parents:
diff changeset
11 @implementation helloclass
anatofuz
parents:
diff changeset
12 @synthesize propName = varName;
anatofuz
parents:
diff changeset
13 @end
anatofuz
parents:
diff changeset
14 // GCC-NOT: Ti,VvarName
anatofuz
parents:
diff changeset
15 // GNUSTEP: Ti,VvarName