blob: dc2ebb75d598349cfaedacc9f9778908a5131e1f [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc %s -emit-llvm -o %t
Lauro Ramos Venancio8432f4b2008-02-07 18:18:58 +00002// 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}