1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 struct face_cachel {
4   unsigned int reverse :1;
5   unsigned char font_specified[1];
6 };
7 
8 void
9 ensure_face_cachel_contains_charset (struct face_cachel *cachel) {
10   cachel->font_specified[0] = 0;
11 }
12 
13