mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
11 lines
141 B
C
11 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;
|
|
}
|