Fix comment typo in previous checkin.
authorTobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>
Sat, 23 Apr 2005 15:33:33 +0000 (17:33 +0200)
committerTobias Schlüter <tobi@gcc.gnu.org>
Sat, 23 Apr 2005 15:33:33 +0000 (17:33 +0200)
From-SVN: r98620

gcc/fortran/ChangeLog
gcc/fortran/trans-const.c

index a20c922277809e8546f4c171382ce87878113f17..94ad2f0131167af27a86e7f75d09f6c4e7531c33 100644 (file)
@@ -1,7 +1,7 @@
 2005-04-23  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
 
        * 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  <kargls@comcast.net>
 
index 59009c1e32fc744aa601d8f535602cefdc637eba..0351e124096a303f74c433afb50e35f6099d28d9 100644 (file)
@@ -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;