aboutsummaryrefslogtreecommitdiff
path: root/gcc/real.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2002-09-26 22:25:14 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-09-26 22:25:14 +0000
commit40f03658801b3fb690d689bf46576688f5382075 (patch)
tree778e5c00812009bde0b1783be2f952fd29b9acd0 /gcc/real.c
parentee8a73d6e7e9523bcdedd76ff3bc414910c8d0c4 (diff)
downloadgcc-40f03658801b3fb690d689bf46576688f5382075.zip
gcc-40f03658801b3fb690d689bf46576688f5382075.tar.gz
gcc-40f03658801b3fb690d689bf46576688f5382075.tar.bz2
c-common.h: Follow spelling conventions.
* c-common.h: Follow spelling conventions. * cpplex.c: Likewise. * cpplib.h: Likewise. * gthr-dce.h: Likewise. * gthr-posix.h: Likewise. * optabs.c: Likewise. * output.h: Likewise. * profile.c: Likewise. * protoize.c: Likewise. * ra-rewrite.c: Likewise. * real.c: Likewise. * recog.c: Likewise. * reg-stack.c: Likewise. * regclass.c: Likewise. * regmove.c: Likewise. * reload.c: Likewise. * reload.h: Likewise. * reload1.c: Likewise. * reorg.c: Likewise. * resource.c: Likewise. * rtl.h: Likewise. * rtlanal.c: Likewise. From-SVN: r57555
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 ad0b160..0d8547b 100644
--- a/gcc/real.c
+++ b/gcc/real.c
@@ -507,7 +507,7 @@ normalize (r)
int shift = 0, exp;
int i, j;
- /* Find the first word that is non-zero. */
+ /* Find the first word that is nonzero. */
for (i = SIGSZ - 1; i >= 0; i--)
if (r->sig[i] == 0)
shift += HOST_BITS_PER_LONG;
@@ -522,7 +522,7 @@ normalize (r)
return;
}
- /* Find the first bit that is non-zero. */
+ /* Find the first bit that is nonzero. */
for (j = 0; ; j++)
if (r->sig[i] & ((unsigned long)1 << (HOST_BITS_PER_LONG - 1 - j)))
break;
@@ -2114,7 +2114,7 @@ round_for_format (fmt, r)
}
/* There are P2 true significand bits, followed by one guard bit,
- followed by one sticky bit, followed by stuff. Fold non-zero
+ followed by one sticky bit, followed by stuff. Fold nonzero
stuff into the sticky bit. */
sticky = 0;