blob: b41b5e0e40d17e7de0836ba7020c92a6483ba0c0 [file] [log] [blame]
Daniel Dunbar10e3ded2008-08-06 05:08:45 +00001// RUN: clang %s -emit-llvm -o -
2
3int main () {
4 struct foo {
5 unsigned a:16;
6 unsigned b:32 __attribute__ ((packed));
7 } x;
8 x.b = 0x56789abcL;
9 return 0;
10}