1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
12 lines
141 B
C
12 lines
141 B
C
// RUN: %clang_cc1 %s -emit-llvm -o %t
|
|
// PR1990
|
|
|
|
struct test {
|
|
char a[3];
|
|
unsigned char b:1;
|
|
};
|
|
|
|
void f(struct test *t) {
|
|
t->b = 1;
|
|
}
|