diff options
author | Tobias Schlüter <tobias.schlueter@physik.uni-muenchen.de> | 2005-04-23 17:33:33 +0200 |
---|---|---|
committer | Tobias Schlüter <tobi@gcc.gnu.org> | 2005-04-23 17:33:33 +0200 |
commit | beceb652c960385f801743f002e98ce5bf50c641 (patch) | |
tree | 3f55c06a374db936c4a4369c9c2723749c5e509f /gcc/fortran/trans-const.c | |
parent | 855a145c554f2389e68768d6852ff8f3e5c18dea (diff) | |
download | gcc-beceb652c960385f801743f002e98ce5bf50c641.zip gcc-beceb652c960385f801743f002e98ce5bf50c641.tar.gz gcc-beceb652c960385f801743f002e98ce5bf50c641.tar.bz2 |
Fix comment typo in previous checkin.
From-SVN: r98620
Diffstat (limited to 'gcc/fortran/trans-const.c')
-rw-r--r-- | gcc/fortran/trans-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/trans-const.c b/gcc/fortran/trans-const.c index 59009c1..0351e12 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; |