summaryrefslogtreecommitdiff
path: root/gcc/real.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2002-11-16 17:52:53 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2002-11-16 17:52:53 +0000
commit6e7fc474ebf81d81a716fd750476f67881667712 (patch)
treea7291215987853b4d7a4af3680aabe033df4a4df /gcc/real.c
parent4c8b0beb2d6fba5d136b6249a73dde1daef0bcef (diff)
downloadgcc-6e7fc474ebf81d81a716fd750476f67881667712.tar.gz
* hard-reg-set.h: Follow spelling conventions.
* real.c: Likewise. * target.h: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59173 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/real.c')
-rw-r--r--gcc/real.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/real.c b/gcc/real.c
index 33f84598046..3bf46370bbb 100644
--- a/gcc/real.c
+++ b/gcc/real.c
@@ -410,7 +410,7 @@ cmp_significands (a, b)
return 0;
}
-/* Return true if A is non-zero. */
+/* Return true if A is nonzero. */
static inline int
cmp_significand_0 (a)
@@ -1675,8 +1675,8 @@ real_to_decimal (str, r_orig, buf_size, digits, crop_trailing_zeros)
/* Round the result. */
if (digit == 5)
{
- /* Round to nearest. If R is non-zero there are additional
- non-zero digits to be extracted. */
+ /* Round to nearest. If R is nonzero there are additional
+ nonzero digits to be extracted. */
if (cmp_significand_0 (&r))
digit++;
/* Round to even. */