blob: 44cc702686d6612e14d9b3f40937243c7ddccb19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# This test fails to link on 64-bit Solaris 2/x86 due to a Sun as bug.
if { [istarget "i?86-*-solaris2*"]
&& ! [check_effective_target_ilp32]
&& ! [check_effective_target_gas] } {
set torture_eval_before_compile {
global compiler_conditional_xfail_data
set compiler_conditional_xfail_data {
"64-bit Sun as bug" \
{ "i?86-*-solaris2*" } \
{ "-O[1-3s]" } \
{ "" }
}
}
}
return 0
|