summaryrefslogtreecommitdiff
path: root/gcc/fortran/trans-const.c
diff options
context:
space:
mode:
authorkargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-20 01:27:31 +0000
committerkargl <kargl@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-20 01:27:31 +0000
commitfeb17841469e3297b74066d320eedaa9673abb13 (patch)
treedfb323aa92b21ec1c7716b34f934a2951af23391 /gcc/fortran/trans-const.c
parent0766e8763c0c87e7190f60f6e754b76614ccc326 (diff)
downloadgcc-feb17841469e3297b74066d320eedaa9673abb13.tar.gz
trans-const.c (gfc_conv_mpz_to_tree): Fix comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98430 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fortran/trans-const.c')
-rw-r--r--gcc/fortran/trans-const.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/trans-const.c b/gcc/fortran/trans-const.c
index 84a62e89e3b..cbe3fe938a5 100644
--- a/gcc/fortran/trans-const.c
+++ b/gcc/fortran/trans-const.c
@@ -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. */