A8.6.92 MCR (Encoding A1): if coproc == '101x' then SEE "Advanced SIMD and VFP"
[llvm/stm8.git] / test / FrontendC++ / 2006-09-27-Debug-Protection.cpp
blob2a70a0f5b45783381a30f31dc5442cc021ddc6cd
1 // RUN: %llvmgxx -O0 -S -g -o - %s | grep {i32 1,}
2 // RUN: %llvmgxx -O0 -S -g -o - %s | grep {i32 2,}
3 class A {
4 public:
5 int x;
6 protected:
7 int y;
8 private:
9 int z;
12 A a;