blob: 437a4be156b758e336e3e33f41b95579beb42bdd [file] [log] [blame]
// RUN: clang-cc %s -emit-llvm -o -
int main () {
struct foo {
unsigned a:16;
unsigned b:32 __attribute__ ((packed));
} x;
x.b = 0x56789abcL;
return 0;
}