summaryrefslogtreecommitdiff
path: root/gcc/config/fp-bit.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-05-16 08:14:26 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1995-05-16 08:14:26 -0400
commitddd5a7c1808995545ad5befaa7320135e60b5d38 (patch)
treebf405c4941b111c08c0642d3410b2970aca3b162 /gcc/config/fp-bit.c
parent6de129de79f7646825d5b004d9fdbca5b893d106 (diff)
downloadgcc-ddd5a7c1808995545ad5befaa7320135e60b5d38.tar.gz
Fix typos in comments.
From-SVN: r9711
Diffstat (limited to 'gcc/config/fp-bit.c')
-rw-r--r--gcc/config/fp-bit.c4
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)
{