Commit 6c08eb63 by Steven G. Kargl Committed by Steven G. Kargl

trans-const.c (gfc_conv_mpz_to_tree): Fix comment.

From-SVN: r98430
parent 53a2494e
2005-04-19 Steven G. Kargl <kargls@comcast.net>
* trans-const.c (gfc_conv_mpz_to_tree): Fix comment.
2005-04-19 Arnaud Desitter <arnaud.desitter@ouce.ox.ac.uk>
Steven G. Kargl <kargls@comcast.net>
......
......@@ -183,9 +183,9 @@ gfc_conv_mpz_to_tree (mpz_t i, int kind)
size_t count;
/* Since we know that the value is not zero (mpz_fits_slong_p),
we know that at one word will be written, but we don't know
we know that at least one word will be written, but we don't know
about the second. It's quicker to zero the second word before
that conditionally clear it later. */
than conditionally clear it later. */
words[1] = 0;
/* Extract the absolute value into words. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment