pr44641.C: Revert line number change.

* g++.dg/debug/dwarf2/pr44641.C: Revert line number change. Remove
        skip on AIX.  XFAIL individual line tests.

From-SVN: r228177
This commit is contained in:
David Edelsohn 2015-09-27 17:31:11 +00:00 committed by David Edelsohn
parent a981b74355
commit f9e807369f
2 changed files with 11 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2015-09-27 David Edelsohn <dje.gcc@gmail.com>
* g++.dg/debug/dwarf2/pr44641.C: Revert line number change. Remove
skip on AIX. XFAIL individual line tests.
2015-09-27 Alexandre Oliva <aoliva@redhat.com>
PR rtl-optimization/64164

View File

@ -1,6 +1,5 @@
// Origin: PR 44641
// { dg-do compile }
// { dg-skip-if "" { powerpc-ibm-aix* } { "*" } { "" } }
// { dg-options "-gdwarf-2 -O0 -dA" }
template <class A> struct MisplacedDbg;
@ -20,21 +19,21 @@ template<typename T> struct Base {
};
template <>
struct MisplacedDbg<Full> // { dg-function-on-line {_ZN12MisplacedDbgI4FullEC[12]Ev} }
// { dg-function-on-line {_ZN12MisplacedDbgI4FullED0Ev} { target *-*-* } 23 }
struct MisplacedDbg<Full> // { dg-function-on-line {_ZN12MisplacedDbgI4FullEC[12]Ev} { xfail powerpc-ibm-aix* } }
// { dg-function-on-line {_ZN12MisplacedDbgI4FullED0Ev} { target *-*-* xfail powerpc-ibm-aix* } 22 }
: public Base<int> {
};
template <class T>
struct MisplacedDbg<T*> // { dg-function-on-line {_ZN12MisplacedDbgIP3ArgEC[12]Ev} }
// { dg-function-on-line {_ZN12MisplacedDbgIP3ArgED0Ev} { target *-*-* } 30 }
struct MisplacedDbg<T*> // { dg-function-on-line {_ZN12MisplacedDbgIP3ArgEC[12]Ev} { xfail powerpc-ibm-aix* } }
// { dg-function-on-line {_ZN12MisplacedDbgIP3ArgED0Ev} { target *-*-* xfail powerpc-ibm-aix* } 29 }
: public Base<int> {
};
template <class A>
struct MisplacedDbg // { dg-function-on-line {_ZN12MisplacedDbgI3ArgEC[12]Ev} }
// { dg-function-on-line {_ZN12MisplacedDbgI3ArgED0Ev} { target *-*-* } 36 }
struct MisplacedDbg // { dg-function-on-line {_ZN12MisplacedDbgI3ArgEC[12]Ev} { xfail powerpc-ibm-aix* } }
// { dg-function-on-line {_ZN12MisplacedDbgI3ArgED0Ev} { target *-*-* xfail powerpc-ibm-aix* } 35 }
: public Base<int> {
};