[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / 2003-11-20-Bitfields.c
blob5284cde4a9461ea0da4cf40cb595515ff256d4df
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 struct face_cachel {
4 unsigned int reverse :1;
5 unsigned char font_specified[1];
6 };
8 void
9 ensure_face_cachel_contains_charset (struct face_cachel *cachel) {
10 cachel->font_specified[0] = 0;