Commit d32d4176 by David Edelsohn Committed by David Edelsohn

* lib/target-supports.exp

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

From-SVN: r241271
parent 8cce07d1
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 {} { ...@@ -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]
} }
......
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