blob: 73e31e75e97952366364acc547d7d8090c78d5bf [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %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}