llvm-project/clang/test/CodeGen/2008-07-22-packed-bitfield-...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
177 B
C
Raw Normal View History

// RUN: %clang_cc1 %s -emit-llvm -o -
int main (void) {
struct foo {
unsigned a:16;
unsigned b:32 __attribute__ ((packed));
} x;
x.b = 0x56789abcL;
return 0;
}