URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [debug/] [dwarf2/] [accessibility1.C] - Rev 852
Go to most recent revision | Compare with Previous | Blame | View Log
// PR debug/44668
// { dg-do compile }
// { dg-options "-g -dA" }
struct C
{
private:
typedef int a;
a b;
enum g { g1, g2 } h;
struct D { int i; } i;
protected:
typedef int c;
c d;
public:
typedef int e;
e f;
} c;
// 3 private DW_TAG_member dies, 1 private DW_TAG_typedef,
// 1 private DW_TAG_enumeration_type and 1 private DW_TAG_structure_type
// { dg-final { scan-assembler-times "3\[^\\r\\n\]* DW_AT_accessibility" 6 } }
// 1 private DW_TAG_member die, 1 private DW_TAG_typedef
// { dg-final { scan-assembler-times "2\[^\\r\\n\]* DW_AT_accessibility" 2 } }
Go to most recent revision | Compare with Previous | Blame | View Log