Added some if-conversion tests.
[oota-llvm.git] / test / C++Frontend / 2003-10-17-BoolBitfields.cpp
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3 struct test {
4   bool A : 1;
5   bool B : 1;
6 };
7
8 void foo(test *T) {
9   T->B = true;
10 }
11