blob: 996cc4c56a83d4f39cecb8845e6e1f8c45fe282d [file] [log] [blame]
Lauro Ramos Venancio8432f4b2008-02-07 18:18:58 +00001// RUN: clang %s -emit-llvm
2// PR1990
3
4struct test {
5 char a[3];
6 unsigned char b:1;
7};
8
9void f(struct test *t) {
10 t->b = 1;
11}