From feb17841469e3297b74066d320eedaa9673abb13 Mon Sep 17 00:00:00 2001 From: kargl Date: Wed, 20 Apr 2005 01:27:31 +0000 Subject: [PATCH] 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 --- gcc/fortran/ChangeLog | 4 ++++ gcc/fortran/trans-const.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index fb06ed8ef9c..0b07c4c1423 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2005-04-19 Steven G. Kargl + + * trans-const.c (gfc_conv_mpz_to_tree): Fix comment. + 2005-04-19 Arnaud Desitter Steven G. Kargl 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. */ -- 2.11.4.GIT