Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 %s -emit-llvm -o -
      2 
      3 int main () {
      4   struct foo {
      5     unsigned a:16;
      6     unsigned b:32 __attribute__ ((packed));
      7   } x;
      8   x.b = 0x56789abcL;
      9   return 0;
     10 }
     11