Fix a case where ScalarEvolution was expanding pointer arithmetic
[oota-llvm.git] / test / FrontendC++ / 2003-10-17-BoolBitfields.cpp
1 // RUN: %llvmgxx -S %s -o - | llvm-as -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