* lib/target-supports.exp

(check_effective_target_floatn_nx_runtime): Return 0 for
        powerpc*-ibm-aix*.

From-SVN: r241271
This commit is contained in:
David Edelsohn 2016-10-17 17:15:33 +00:00 committed by David Edelsohn
parent 8cce07d1dd
commit d32d41768b
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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]
} }