diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-11-16 17:52:53 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-11-16 17:52:53 +0000 |
commit | 476c5eb60eb1046af8609079235c2f6db25365f4 (patch) | |
tree | a7291215987853b4d7a4af3680aabe033df4a4df /gcc/real.c | |
parent | af5fb6ab3bd4c53d247340d6dad77471993a168c (diff) | |
download | gcc-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. */ |