diff options
author | kargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-28 23:31:22 +0000 |
---|---|---|
committer | kargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-28 23:31:22 +0000 |
commit | 31df9e4b7e134a36a7d579b09896171c1572ba92 (patch) | |
tree | 92aa54b723fbf8259a3029a5c5e269278d1d32ca /gcc/fortran/arith.h | |
parent | 1a358480f30b961e7c0e4c164ad47f67dc5f1db6 (diff) | |
download | gcc-31df9e4b7e134a36a7d579b09896171c1572ba92.tar.gz |
2006-10-27 Steven G. Kargl <kargl@gcc.gnu.org>
* gfortran.h: Remove GFC_MPFR_TOO_OLD.
* arith.c (arctangent2): Remove function
(gfc_check_real_range): Remove subnormal kludge.
* arith.h: Remove arctangent2 prototype.
* simplify.c: (gfc_simplify_atan2): Remove use of arctangent2.
(gfc_simplify_exponent, gfc_simplify_log, gfc_simplify_nearest,
gfc_simplify_rrspacing, gfc_simplify_spacing): Remove mpfr kludges.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118120 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fortran/arith.h')
-rw-r--r-- | gcc/fortran/arith.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/fortran/arith.h b/gcc/fortran/arith.h index b674165a81f..60fd2e0e3db 100644 --- a/gcc/fortran/arith.h +++ b/gcc/fortran/arith.h @@ -25,11 +25,9 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA #include "gfortran.h" -/* MPFR does not have mpfr_atan2(), which needs to return the principle - value of atan2(). MPFR also does not have the conversion of a mpfr_t - to a mpz_t, so declare a function for this as well. */ +/* MPFR also does not have the conversion of a mpfr_t to a mpz_t, so declare + a function for this as well. */ -void arctangent2 (mpfr_t, mpfr_t, mpfr_t); void gfc_mpfr_to_mpz (mpz_t, mpfr_t); void gfc_set_model_kind (int); void gfc_set_model (mpfr_t); |