[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / g++.dg / debug / dwarf2 / namespace-1.C
blob34fa088811f799e51950c02a1fc4d739e74d10ab
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin PR debug/41170
3 // { dg-options "-gdwarf-2 -dA -fno-merge-debug-strings -gno-strict-dwarf" }
4 //
5 // We want to test that there is a DW_TAG_namespace DIE DW_AT_name is set
6 // to "not_emitted". That namespace die has a child DW_TAG_typedef DIE
7 // which DW_AT_name is the null terminated string "T".
8 // { dg-final { scan-assembler-times "DIE +\\(\[^\n\]*\\) DW_TAG_namespace" 1 } }
9 // { dg-final { scan-assembler-times "\"not_emitted.0\"\[^\n\]*DW_AT_name" 1 } }
10 // { dg-final { scan-assembler-times "DIE +\\(\[^\n\]*\\) DW_TAG_typedef" 1 } }
11 // { dg-final { scan-assembler-times "\.ascii \"T.0\"\[\t \]+\[^\n\]*DW_AT_name" 1 { xfail { powerpc-ibm-aix* } } } }
13 struct strukt
15   int m;
18 namespace not_emitted
20   typedef strukt T;
23 int
24 main()
26   not_emitted::T t;
27   t.m = 0;
28   return 0;