* trans-intrinsic.c: Fix a comment typo.

From-SVN: r88481
This commit is contained in:
Kazu Hirata 2004-10-04 12:00:04 +00:00 committed by Kazu Hirata
parent 59c4456e07
commit b805ea17e5
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-10-04 Kazu Hirata <kazu@cs.umass.edu>
* trans-intrinsic.c: Fix a comment typo.
2004-10-03 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* simplify.c (range_check): Remove blank line at beginning of function.

View File

@ -2451,7 +2451,7 @@ gfc_conv_intrinsic_spacing (gfc_se * se, gfc_expr * expr)
/* Generate code for RRSPACING (X) intrinsic function.
RRSPACING (X) = |X * POW (2, -e)| * POW (2, p) = |FRACTION (X)| * POW (2, p)
So the result's exponenet is p. And if X is normalized, X's fraction part
So the result's exponent is p. And if X is normalized, X's fraction part
is the result's fraction. If X is denormalized, to get the X's fraction we
shift X's fraction part to left until the first '1' is removed.