Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git] / test / C++Frontend / 2003-10-17-BoolBitfields.cpp
blob547a367d34e6ad4abdba9ea292b3a6e4d20d5ac2
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
3 struct test {
4 bool A : 1;
5 bool B : 1;
6 };
8 void foo(test *T) {
9 T->B = true;