From beceb652c960385f801743f002e98ce5bf50c641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Schl=C3=BCter?= Date: Sat, 23 Apr 2005 17:33:33 +0200 Subject: [PATCH] Fix comment typo in previous checkin. From-SVN: r98620 --- gcc/fortran/ChangeLog | 2 +- gcc/fortran/trans-const.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index a20c9222778..94ad2f01311 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,7 +1,7 @@ 2005-04-23 Tobias Schl"uter * trans-const.c (gfc_conv_mpfr_to_tree): Use hexadecimal string as - intermediate representation. + intermediate representation. Fix typo in comment. 2005-04-21 Steven G. Kargl diff --git a/gcc/fortran/trans-const.c b/gcc/fortran/trans-const.c index 59009c1e32f..0351e124096 100644 --- a/gcc/fortran/trans-const.c +++ b/gcc/fortran/trans-const.c @@ -234,7 +234,7 @@ gfc_conv_mpfr_to_tree (mpfr_t f, int kind) p = mpfr_get_str (NULL, &exp, 16, gfc_real_kinds[n].digits / 4 + 1, f, GFC_RND_MODE); - /* REAL_VALUE_ATOF expects the exponent for mantissae * 2**exp, + /* REAL_VALUE_ATOF expects the exponent for mantissa * 2**exp, mpfr_get_str returns the exponent for mantissa * 16**exp, adjust for that. */ exp *= 4;