Commit 56a28102 by Bob Wilson Committed by Bob Wilson

20001226-1.x: Only xfail for Xtensa targets if not optimizing.

        * gcc.c-torture/compile/20001226-1.x: Only xfail for Xtensa
        targets if not optimizing.

From-SVN: r54481
parent e654730d
2002-06-10 Bob Wilson <bob.wilson@acm.org>
* gcc.c-torture/compile/20001226-1.x: Only xfail for Xtensa
targets if not optimizing.
2002-06-10 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/compile/20020605-1.c: New test.
......
# This does not assemble on m68hc11 because the function is larger
# than 64K.
global target_triplet
if { [istarget "m6811-*-*"] || [istarget "m6812-*-*"] } {
set torture_compile_xfail "$target_triplet"
}
# It doesn't work on Xtensa with -O0 because the function is larger
# than the range of a jump instruction (+- 128K) and the assembler
# does not yet relax jumps to indirect jumps.
global target_triplet
if { [istarget "m6811-*-*"] || [istarget "m6812-*-*"] || [istarget "xtensa-*-*"]} {
set torture_compile_xfail "$target_triplet"
set torture_eval_before_compile {
set compiler_conditional_xfail_data {
"jump beyond 128K not supported" \
"xtensa-*-*" \
{ "-O0" } \
{ "" }
}
}
return 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