* gcc.c-torture/execute/va-arg-25.x: XFAIL only on SPARC 64-bit.

From-SVN: r77485
This commit is contained in:
Eric Botcazou 2004-02-08 18:00:29 +01:00 committed by Eric Botcazou
parent 6bdd607046
commit c79751b99d
2 changed files with 24 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2004-02-08 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.c-torture/execute/va-arg-25.x: XFAIL only on SPARC 64-bit.
2004-02-07 Zack Weinberg <zack@codesourcery.com>
Bug 13856

View File

@ -1,12 +1,24 @@
# This doesn't work on sparc*-*-*.
# This doesn't work on SPARC 64-bit.
set torture_eval_before_compile {
global compiler_conditional_xfail_data
set compiler_conditional_xfail_data {
"PR target/12916" \
{ "sparc*-*-*" } \
{ "*" } \
{ "" }
if { [istarget "sparc64-*-*"] || [istarget "sparcv9-*-*"] } {
set torture_eval_before_compile {
global compiler_conditional_xfail_data
set compiler_conditional_xfail_data {
"PR target/12916" \
{ "*-*-*" } \
{ "*" } \
{ "-m32" }
}
}
} elseif { [istarget "sparc-*-*"] } {
set torture_eval_before_compile {
global compiler_conditional_xfail_data
set compiler_conditional_xfail_data {
"PR target/12916" \
{ "*-*-*" } \
{ "-m64" } \
{ "" }
}
}
}