diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-16 12:14:26 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-16 12:14:26 +0000 |
commit | 01cc3b7526f036bef25d4140ef0903276a67aa9a (patch) | |
tree | bf405c4941b111c08c0642d3410b2970aca3b162 /gcc/config/fp-bit.c | |
parent | 6a63b8ac07f1b0e513c0b549c074e71c63041c1a (diff) | |
download | gcc-01cc3b7526f036bef25d4140ef0903276a67aa9a.tar.gz |
Fix typos in comments.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9711 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/fp-bit.c')
-rw-r--r-- | gcc/config/fp-bit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c index 9f2d27979cf..56984e85f86 100644 --- a/gcc/config/fp-bit.c +++ b/gcc/config/fp-bit.c @@ -435,7 +435,7 @@ unpack_d (FLO_union_type * src, fp_number_type * dst) /* Huge exponent*/ if (fraction == 0) { - /* Attatched to a zero fraction - means infinity */ + /* Attached to a zero fraction - means infinity */ dst->class = CLASS_INFINITY; } else @@ -569,7 +569,7 @@ _fpadd_parts (fp_number_type * a, tmp->normal_exp = a_normal_exp; tmp->fraction.ll = -tfraction; } - /* and renomalize it */ + /* and renormalize it */ while (tmp->fraction.ll < IMPLICIT_1 && tmp->fraction.ll) { |