xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-member.cpp (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1 // FIXME: Check IR rather than asm, then triple is not needed.
2 // RUN: %clang -Xclang -triple=%itanium_abi_triple -fverbose-asm -g -S %s -o - | grep DW_ACCESS_public
3 class A {
4 public:
5   int x;
6 };
7 A a;
8