PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2003-11-20-Bitfields.c
blobc9ea0dc7f1ecc01a46cf89240899fbd3a77f52b4
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -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;