aboutsummaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-02-12 15:17:56 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-02-12 15:17:56 +0000
commit647eea9dd803b0b7df330dc834d5817761fcfbe6 (patch)
treee97624b94c226e126abcb5ef4b80d102a7fd124b /gcc/libgcc2.c
parent0008978072badfdf3c5afc69f98530cc3e48f953 (diff)
downloadgcc-647eea9dd803b0b7df330dc834d5817761fcfbe6.zip
gcc-647eea9dd803b0b7df330dc834d5817761fcfbe6.tar.gz
gcc-647eea9dd803b0b7df330dc834d5817761fcfbe6.tar.bz2
c-tree.h, [...]: Fix comment typos.
* c-tree.h, combine.c, expmed.c, flow.c, libgcc2.c, simplify-rtx.c, tree-ssa-live.h: Fix comment typos. Follow spelling conventions. From-SVN: r94939
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r--gcc/libgcc2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c
index df2ecb7..56a9bc4 100644
--- a/gcc/libgcc2.c
+++ b/gcc/libgcc2.c
@@ -1553,7 +1553,7 @@ NAME (TYPE x, Wtype m)
/* All of these would be present in a full C99 implementation of <math.h>
and <complex.h>. Our problem is that only a few systems have such full
- implementations. Further, libgcc_s.so isn't currenly linked against
+ implementations. Further, libgcc_s.so isn't currently linked against
libm.so, and even for systems that do provide full C99, the extra overhead
of all programs using libgcc having to link against libm. So avoid it. */
@@ -1653,7 +1653,7 @@ CONCAT3(__div,MODE,3) (MTYPE a, MTYPE b, MTYPE c, MTYPE d)
{
MTYPE denom, ratio, x, y;
- /* ??? We can get better behaviour from logrithmic scaling instead of
+ /* ??? We can get better behavior from logarithmic scaling instead of
the division. But that would mean starting to link libgcc against
libm. We could implement something akin to ldexp/frexp as gcc builtins
fairly easily... */
@@ -1673,7 +1673,7 @@ CONCAT3(__div,MODE,3) (MTYPE a, MTYPE b, MTYPE c, MTYPE d)
}
/* Recover infinities and zeros that computed as NaN+iNaN; the only cases
- are non-zero/zero, infinite/finite, and finite/infinite. */
+ are nonzero/zero, infinite/finite, and finite/infinite. */
if (isnan (x) && isnan (y))
{
if (denom == 0.0 && (!isnan (a) || !isnan (b)))