1// RUN: %clang_cc1 %s -emit-llvm -o %t2// PR19903 4struct test {5 char a[3];6 unsigned char b:1;7};8 9void f(struct test *t) {10 t->b = 1;11}12