From: Janne Blomqvist Date: Fri, 20 May 2011 14:45:51 +0000 (+0300) Subject: PR 48977 Denormal exception on glibc targets X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9272cac88ae7d97a98c1abe073b017513b064fc0;p=gcc.git PR 48977 Denormal exception on glibc targets Co-Authored-By: Uros Bizjak From-SVN: r173952 --- diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 9147014a21a..d0effacaa22 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,9 @@ +2011-05-20 Janne Blomqvist + Uros Bizjak + + PR libfortran/48977 + * configure.host: Swap order of glibc and x86 tests. + 2011-05-20 Janne Blomqvist * config/fpu-387.h (set_fpu): Use renamed inexact macro. @@ -186,7 +192,7 @@ * io/write_float.def (output_float_FMT_G): Use current rounding mode to set the rounding parameters. (output_float): Skip rounding if value is zero. - + 2011-04-16 Janne Blomqvist * intrinsics/date_and_time.c (date_and_time): Remove sprintf CPP diff --git a/libgfortran/configure.host b/libgfortran/configure.host index eb68c934c39..92b6433b968 100644 --- a/libgfortran/configure.host +++ b/libgfortran/configure.host @@ -20,17 +20,17 @@ # DEFAULTS fpu_host='fpu-generic' -# HOST-SPECIFIC OVERRIDES +if test "x${have_feenableexcept}" = "xyes"; then + fpu_host='fpu-glibc' +fi + +# x86 asm should be used instead of glibc, since glibc doesn't support +# the x86 denormal exception. case "${host_cpu}" in i?86 | x86_64) fpu_host='fpu-387' ;; esac -# CONFIGURATION-SPECIFIC OVERRIDES -if test "x${have_feenableexcept}" = "xyes"; then - fpu_host='fpu-glibc' -fi - if test "x${have_fpsetmask}" = "xyes"; then fpu_host='fpu-sysv' fi