diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-01-14 21:54:16 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-01-14 21:54:16 +0000 |
commit | 0e0d3ecb8b18488fc4f57f2dfa7675d2edec7725 (patch) | |
tree | 6c5ad22d953bc4051bc345514a82be88f1a50de5 /libgcc/configure | |
parent | b84f3b2cf4fbf5fd70f00b8b41f0c5608d467631 (diff) | |
download | gcc-0e0d3ecb8b18488fc4f57f2dfa7675d2edec7725.tar.gz |
Revert 2016-01-13 change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@232392 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc/configure')
-rw-r--r-- | libgcc/configure | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/libgcc/configure b/libgcc/configure index 7cf6e9b1979..78708c7f407 100644 --- a/libgcc/configure +++ b/libgcc/configure @@ -4766,55 +4766,6 @@ esac ;; esac -case ${host} in -powerpc*-*-linux*) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the PowerPC compiler can do __float128" >&5 -$as_echo_n "checking whether the PowerPC compiler can do __float128... " >&6; } -if test "${libgcc_cv_powerpc_float128+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#pragma GCC target ("vsx,float128") - __float128 add (__float128 *a) { return *a + *(a+1); } -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - libgcc_cv_powerpc_float128=yes -else - libgcc_cv_powerpc_float128=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libgcc_cv_powerpc_float128" >&5 -$as_echo "$libgcc_cv_powerpc_float128" >&6; } - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the PowerPC compiler can do hardware __float128" >&5 -$as_echo_n "checking whether the PowerPC compiler can do hardware __float128... " >&6; } -if test "${libgcc_cv_powerpc_float128_hw+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#pragma GCC target ("cpu=power9,float128,float128-hardware") - #include <sys/auxv.h> - __float128 add (__float128 a, __float128 b) - { - __float128 ret; - __asm__ ("xsaddqp %0,%1,%2" : "=v" (ret) : "v" (a), "v" (b)); - return ret; - } -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - libgcc_cv_powerpc_float128_hw=yes -else - libgcc_cv_powerpc_float128_hw=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libgcc_cv_powerpc_float128_hw" >&5 -$as_echo "$libgcc_cv_powerpc_float128_hw" >&6; } -esac - # Collect host-machine-specific information. . ${srcdir}/config.host |