Commit fcb6fa85 by Eric Botcazou Committed by Eric Botcazou

simd-5.x: XFAIL on SPARC64.

	* gcc.c-torture/compile/simd-5.x: XFAIL on SPARC64.

Co-Authored-By: Kaveh R. Ghazi <ghazi@caip.rutgers.edu>

From-SVN: r67151
parent 76ab57af
2003-05-24 Eric Botcazou <ebotcazou@libertysurf.fr>
Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.c-torture/compile/simd-5.x: XFAIL on SPARC64.
2003-05-24 Andreas Tobler <a.tobler@schweiz.ch> 2003-05-24 Andreas Tobler <a.tobler@schweiz.ch>
* gcc.dg/torture/builtin-noret-1.c: Add dg-option -multiply_defined * gcc.dg/torture/builtin-noret-1.c: Add dg-option -multiply_defined
......
...@@ -3,13 +3,38 @@ if { [istarget "h8300-*-*"] } { ...@@ -3,13 +3,38 @@ if { [istarget "h8300-*-*"] } {
return 1; return 1;
} }
# PowerPC-64 doesn't handle this; see PR target/9680 if { [istarget "sparc64-*-*"] || [istarget "sparcv9-*-*"] } {
set torture_eval_before_compile { # On SPARC64/SPARC-V9 it fails, except with -m32.
set compiler_conditional_xfail_data { set torture_eval_before_compile {
"PR target/9680" \ global compiler_conditional_xfail_data
"powerpc64-*-*" \ set compiler_conditional_xfail_data {
{ "*" } \ "PR target/9200" \
{ "" } { "*-*-*" } \
{ "*" } \
{ "-m32" }
}
}
} elseif { [istarget "sparc-*-*"] } {
# On regular SPARC it doesn't fail, except with -m64.
set torture_eval_before_compile {
global compiler_conditional_xfail_data
set compiler_conditional_xfail_data {
"PR target/9200" \
{ "*-*-*" } \
{ "-m64" } \
{ "" }
}
}
} elseif { [istarget "powerpc64-*-*"] } {
# On PowerPC-64 it fails unconditionally.
set torture_eval_before_compile {
global compiler_conditional_xfail_data
set compiler_conditional_xfail_data {
"PR target/9680" \
"*-*-*" \
{ "*" } \
{ "" }
}
} }
} }
......
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