Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git] / test / C++Frontend / 2006-09-27-Debug-Protection.cpp
blobd9a25aa70e73ab3563574fcd429ac3e6d3a679c7
1 // RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 1,}
2 // RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 2,}
4 class A {
5 public:
6 int x;
7 protected:
8 int y;
9 private:
10 int z;
13 A a;