blob: 5284cde4a9461ea0da4cf40cb595515ff256d4df [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3struct face_cachel {
4 unsigned int reverse :1;
5 unsigned char font_specified[1];
6};
7
8void
9ensure_face_cachel_contains_charset (struct face_cachel *cachel) {
10 cachel->font_specified[0] = 0;
11}
12