Commit 86ce925b by David Edelsohn Committed by David Edelsohn

pr56819.C: Skip on AIX.

        * g++.dg/debug/pr56819.C: Skip on AIX.
        * g++.dg/ext/vector23.C: Ignore vector ABI warning.
        * g++.dg/guality/guality.exp: Skip on AIX.

From-SVN: r201060
parent 8c775844
......@@ -6,6 +6,10 @@
* lib/dg-pch.exp (dg-flags-pch): Skip on AIX.
* g++.dg/debug/pr56819.C: Skip on AIX.
* g++.dg/ext/vector23.C: Ignore vector ABI warning.
* g++.dg/guality/guality.exp: Skip on AIX.
2013-07-19 Georg-Johann Lay <avr@gjlay.de>
PR target/57516
......
// PR debug/56819
// { dg-do compile }
// { dg-options "-fcompare-debug" }
// { dg-xfail-if "" { powerpc-ibm-aix* } { "*" } { "" } }
template <typename>
struct A
......
/* { dg-do compile } */
/* { dg-options "-std=gnu++1y -Wsign-conversion" } */
// Ignore warning on some powerpc-linux configurations.
// { dg-prune-output "non-standard ABI extension" }
typedef double vecd __attribute__((vector_size(4*sizeof(double))));
typedef float vecf __attribute__((vector_size(8*sizeof(float))));
......
......@@ -8,6 +8,11 @@ if { [istarget *-*-darwin*] } {
return
}
if { [istarget "powerpc-ibm-aix*"] } {
set torture_execute_xfail "powerpc-ibm-aix*"
return
}
proc check_guality {args} {
set result [eval check_compile guality_check executable $args "-g -O0"]
set lines [lindex $result 0]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment