blob: 2664174e05a5125b19bac8cb5f2aca31116110e3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# This doesn't work on d10v if doubles are not 64 bits
if { [istarget "d10v-*-*"] && ! [string-match "*-mdouble64*" $CFLAGS] } {
set torture_execute_xfail "d10v-*-*"
}
if [istarget "avr-*-*"] {
# AVR doubles are floats
return 1
}
return 0
|