blob: 1a516aaf8619eeab5d7999a71ab89b6758e11ee7 [file] [log] [blame]
John McCall260611a2012-06-20 06:18:46 +00001// RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o %t %s
David Chisnall64fd7e82010-06-04 01:10:52 +00002// RUN: grep "ib1b14" %t | count 1
David Chisnall11d3f4c2012-07-03 20:49:52 +00003// RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -fobjc-runtime=gcc -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);