Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 %s -emit-llvm -o %t
      2 // PR1990
      3 
      4 struct test {
      5   char a[3];
      6   unsigned char b:1;
      7 };
      8 
      9 void f(struct test *t) {
     10   t->b = 1;
     11 }
     12