blob: 65f54115425c949e35d64504adef731ac658a35a [file] [log] [blame]
Daniel Dunbar2d6ca8d2008-08-21 02:51:29 +00001// RUN: clang %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}