aboutsummaryrefslogtreecommitdiff
path: root/gcc/real.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2002-11-16 17:52:53 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-11-16 17:52:53 +0000
commit476c5eb60eb1046af8609079235c2f6db25365f4 (patch)
treea7291215987853b4d7a4af3680aabe033df4a4df /gcc/real.c
parentaf5fb6ab3bd4c53d247340d6dad77471993a168c (diff)
downloadgcc-476c5eb60eb1046af8609079235c2f6db25365f4.zip
gcc-476c5eb60eb1046af8609079235c2f6db25365f4.tar.gz
gcc-476c5eb60eb1046af8609079235c2f6db25365f4.tar.bz2
hard-reg-set.h: Follow spelling conventions.
* hard-reg-set.h: Follow spelling conventions. * real.c: Likewise. * target.h: Likewise. From-SVN: r59173
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 33f8459..3bf4637 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. */