blob: 03cf9bfba722c87926267e1629499c8eb7eeffe2 [file] [log] [blame]
David Chisnall64fd7e82010-06-04 01:10:52 +00001// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -o %t %s
2// RUN: grep "ib1b14" %t | count 1
3// RUN: %clang_cc1 -triple i386-unknown-unknown -fgnu-runtime -emit-llvm -o %t %s
4// 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);