From d32d41768b8c3564de2c683a697014775c02813e Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Mon, 17 Oct 2016 17:15:33 +0000 Subject: * lib/target-supports.exp (check_effective_target_floatn_nx_runtime): Return 0 for powerpc*-ibm-aix*. From-SVN: r241271 --- gcc/testsuite/lib/target-supports.exp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gcc/testsuite/lib') diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index 201ed4b..2394ac4 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -2571,6 +2571,9 @@ proc check_effective_target_float128x_runtime {} { # _FloatN and _FloatNx types, 0 otherwise. proc check_effective_target_floatn_nx_runtime {} { + if { [istarget powerpc*-*-aix*] } { + return 0 + } if { [istarget powerpc*-*-*] } { return [check_effective_target_base_quadfloat_support] } -- cgit v1.1