blob: 17fd4a4108b79fc3455b34637b38f63440e67a36 [file] [log] [blame]
John McCalld1e40d52011-10-02 01:16:38 +00001// RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-fragile-abi -emit-llvm -o %t %s
David Chisnall64fd7e82010-06-04 01:10:52 +00002// RUN: grep "ib1b14" %t | count 1
John McCalld1e40d52011-10-02 01:16:38 +00003// RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-fragile-abi -fgnu-runtime -emit-llvm -o %t %s
David Chisnall64fd7e82010-06-04 01:10:52 +00004// RUN: grep "ib32i1b33i14" %t | count 1
5
6struct foo{
7 int a;
8 int b:1;
9 int c:14;
10};
11
12const char *encoding = @encode(struct foo);