2012-06-20 14:18:46 +08:00
|
|
|
// RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o %t %s
|
2010-06-04 09:10:52 +08:00
|
|
|
// RUN: grep "ib1b14" %t | count 1
|
2012-07-04 04:49:52 +08:00
|
|
|
// RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -fobjc-runtime=gcc -emit-llvm -o %t %s
|
2010-06-04 09:10:52 +08:00
|
|
|
// RUN: grep "ib32i1b33i14" %t | count 1
|
|
|
|
|
|
|
|
struct foo{
|
|
|
|
int a;
|
|
|
|
int b:1;
|
|
|
|
int c:14;
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *encoding = @encode(struct foo);
|