Files
clang-p2996/clang/test/CodeGenObjC/encode-test-1.m
Daniel Dunbar 8fbe78f6fc Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
- This is designed to make it obvious that %clang_cc1 is a "test variable"
   which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it
   can be useful to redefine what gets run as 'clang -cc1' (for example, to set
   a default target).

llvm-svn: 91446
2009-12-15 20:14:24 +00:00

37 lines
594 B
Objective-C

// RUN: %clang_cc1 -triple=i686-apple-darwin9 -emit-llvm -o %t %s
// RUN: grep -e "{Base=b2b3b4b5}" %t | count 1
// RUN: grep -e "{Derived=b2b3b4b5b5b4b3}" %t | count 1
enum Enum { one, two, three, four };
@interface Base {
unsigned a: 2;
int b: 3;
enum Enum c: 4;
unsigned d: 5;
}
@end
@interface Derived: Base {
signed e: 5;
int f: 4;
enum Enum g: 3;
}
@end
@implementation Base @end
@implementation Derived @end
int main(void)
{
const char *en = @encode(Base);
// printf ("%s\n", en);
const char *ed = @encode(Derived);
// printf ("%s\n", ed);
return 0;
}