brintos

brintos / llvm-project-archived public Read only

0
0
Text · 141 B · 73e31e7 Raw
12 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o %t2// PR19903 4struct test {5  char a[3];6  unsigned char b:1;7};8 9void f(struct test *t) {10  t->b = 1;11}12