summaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-02-12 15:17:56 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-02-12 15:17:56 +0000
commit2fb898791a451d07e1c58d12b6e27f8a0afe820e (patch)
treee97624b94c226e126abcb5ef4b80d102a7fd124b /gcc/libgcc2.c
parentdccb958c636e1a082b8b910c422a851df75b83ba (diff)
downloadgcc-2fb898791a451d07e1c58d12b6e27f8a0afe820e.tar.gz
* c-tree.h, combine.c, expmed.c, flow.c, libgcc2.c,
simplify-rtx.c, tree-ssa-live.h: Fix comment typos. Follow spelling conventions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94939 138bc75d-0d04-0410-961f-82ee72b054a4
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 df2ecb7a4e5..56a9bc4e87a 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)))