rs6000: Skip DWARF5 and -fcompare-debug testcases on AIX.
[official-gcc.git] / gcc / testsuite / g++.dg / debug / dwarf2 / pr85550.C
blob35b0f56e9590f3f88448872345e8196d3e6fc2fe
1 // PR debug/85550
2 // { dg-do link }
3 // { dg-options "-O2 -g -fdebug-types-section" }
4 // { dg-skip-if "AIX DWARF5" { powerpc-ibm-aix* } }
6 struct A {
7   int bar () const { return 0; }
8 };
9 template <int (A::*foo)() const>
10 struct B {
13 B<&A::bar> b;
15 int
16 main ()