Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 -g -S -masm-verbose -o %t %s
      2 // RUN: grep DW_AT_accessibility %t
      3 
      4 class A {
      5 public:
      6   int p;
      7 private:
      8   int pr;
      9 };
     10 
     11 A a;
     12