mirror of git://gcc.gnu.org/git/gcc.git
* lib/target-supports.exp
(check_effective_target_floatn_nx_runtime): Return 0 for
powerpc*-ibm-aix*.
From-SVN: r241271
This commit is contained in:
parent
8cce07d1dd
commit
d32d41768b
|
|
@ -1,3 +1,9 @@
|
||||||
|
2016-10-17 David Edelsohn <dje.gcc@gmail.com>
|
||||||
|
|
||||||
|
* lib/target-supports.exp
|
||||||
|
(check_effective_target_floatn_nx_runtime): Return 0 for
|
||||||
|
powerpc*-ibm-aix*.
|
||||||
|
|
||||||
2016-10-17 Andrew Pinski <apinski@cavium.com>
|
2016-10-17 Andrew Pinski <apinski@cavium.com>
|
||||||
|
|
||||||
* gcc.target/aarch64/aapcs64/test_align-7.c: Use long
|
* gcc.target/aarch64/aapcs64/test_align-7.c: Use long
|
||||||
|
|
|
||||||
|
|
@ -2571,6 +2571,9 @@ proc check_effective_target_float128x_runtime {} {
|
||||||
# _FloatN and _FloatNx types, 0 otherwise.
|
# _FloatN and _FloatNx types, 0 otherwise.
|
||||||
|
|
||||||
proc check_effective_target_floatn_nx_runtime {} {
|
proc check_effective_target_floatn_nx_runtime {} {
|
||||||
|
if { [istarget powerpc*-*-aix*] } {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
if { [istarget powerpc*-*-*] } {
|
if { [istarget powerpc*-*-*] } {
|
||||||
return [check_effective_target_base_quadfloat_support]
|
return [check_effective_target_base_quadfloat_support]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue