about summary refs log tree commit diff
path: root/ports/sysdeps/ia64
diff options
context:
space:
mode:
authorOndřej Bílka <neleai@seznam.cz>2013-08-21 19:48:48 +0200
committerOndřej Bílka <neleai@seznam.cz>2013-08-21 19:48:48 +0200
commitc0c3f78afb6070721848574e2e5dff5cfa20e28d (patch)
tree6a1d44ea1e2f3d5425c05fd485c54aa15fda75f6 /ports/sysdeps/ia64
parent46ed103824ff42668ddfc36c1b3fdb9219d48eee (diff)
downloadglibc-c0c3f78afb6070721848574e2e5dff5cfa20e28d.tar.gz
glibc-c0c3f78afb6070721848574e2e5dff5cfa20e28d.tar.xz
glibc-c0c3f78afb6070721848574e2e5dff5cfa20e28d.zip
Fix typos.
Diffstat (limited to 'ports/sysdeps/ia64')
-rw-r--r--ports/sysdeps/ia64/fpu/e_atanhl.S2
-rw-r--r--ports/sysdeps/ia64/fpu/e_log2l.S2
-rw-r--r--ports/sysdeps/ia64/fpu/e_logl.S4
-rw-r--r--ports/sysdeps/ia64/fpu/fraiseexcpt.c2
-rw-r--r--ports/sysdeps/ia64/fpu/libm_lgammal.S4
-rw-r--r--ports/sysdeps/ia64/fpu/s_log1pl.S4
6 files changed, 9 insertions, 9 deletions
diff --git a/ports/sysdeps/ia64/fpu/e_atanhl.S b/ports/sysdeps/ia64/fpu/e_atanhl.S
index 846a89ec3a..5d828d5ffa 100644
--- a/ports/sysdeps/ia64/fpu/e_atanhl.S
+++ b/ports/sysdeps/ia64/fpu/e_atanhl.S
@@ -99,7 +99,7 @@
 //   calculation is subdivided into two stages. The first stage is
 //   calculating of X = 2*|x|/(1-|x|). The second one is calculating of
 //   sign(x)*log1pl(X)/2. To obtain required accuracy we use precise division
-//   algorythm output of which is a pair of two extended precision values those
+//   algorithm output of which is a pair of two extended precision values those
 //   approximate result of division with accuracy higher than working
 //   precision. This pair is passed to modified log1pl function.
 //
diff --git a/ports/sysdeps/ia64/fpu/e_log2l.S b/ports/sysdeps/ia64/fpu/e_log2l.S
index 837c55d294..f33969aba7 100644
--- a/ports/sysdeps/ia64/fpu/e_log2l.S
+++ b/ports/sysdeps/ia64/fpu/e_log2l.S
@@ -471,7 +471,7 @@ GLOBAL_IEEE754_ENTRY(log2l)
   (p7) br.cond.spnt LOG2_PSEUDO_ZERO
 }
 {.mfi
-  // get T_low adress
+  // get T_low address
   shladd r3=r28,3,r3
   // if first 8 bits after leading 1 are all ones, use polynomial approx. only
   (p10) fms.s1 f6=f7,f36,f1
diff --git a/ports/sysdeps/ia64/fpu/e_logl.S b/ports/sysdeps/ia64/fpu/e_logl.S
index e12c65d51e..996f64aaee 100644
--- a/ports/sysdeps/ia64/fpu/e_logl.S
+++ b/ports/sysdeps/ia64/fpu/e_logl.S
@@ -211,7 +211,7 @@
 //
 //      Calculate	X_1 := X_0 * Z_1 truncated to lsb = 2^(-14)
 //      		     = 1.0 0 0 0 d_5 ... d_14
-//      		This is accomplised by integer multiplication.
+//      		This is accomplished by integer multiplication.
 //      		It is proved that X_1 indeed always begin
 //      		with 1.0000 in fixed point.
 //
@@ -232,7 +232,7 @@
 //
 //      Calculate	X_2 := X_1 * Z_2 truncated to lsb = 2^(-14)
 //      		     = 1.0 0 0 0 0 0 0 0 d_9 d_10 ... d_14
-//      		This is accomplised by integer multiplication.
+//      		This is accomplished by integer multiplication.
 //      		It is proved that X_2 indeed always begin
 //      		with 1.00000000 in fixed point.
 //
diff --git a/ports/sysdeps/ia64/fpu/fraiseexcpt.c b/ports/sysdeps/ia64/fpu/fraiseexcpt.c
index aaa9b61663..76c1b7a315 100644
--- a/ports/sysdeps/ia64/fpu/fraiseexcpt.c
+++ b/ports/sysdeps/ia64/fpu/fraiseexcpt.c
@@ -40,7 +40,7 @@ feraiseexcept (int excepts)
   /* First: invalid exception.  */
   if (FE_INVALID & excepts)
     {
-      /* One example of a invalid operation is 0 * Infinity.  */
+      /* One example of an invalid operation is 0 * Infinity.  */
       tmp = 0;
       __asm__ __volatile__ ("frcpa.s0 %0,p1=f0,f0" : "=f" (tmp) : : "p1" );
     }
diff --git a/ports/sysdeps/ia64/fpu/libm_lgammal.S b/ports/sysdeps/ia64/fpu/libm_lgammal.S
index 351befb147..95c87a45df 100644
--- a/ports/sysdeps/ia64/fpu/libm_lgammal.S
+++ b/ports/sysdeps/ia64/fpu/libm_lgammal.S
@@ -317,7 +317,7 @@
 //
 //      Calculate       X_1 := X_0 * Z_1 truncated to lsb = 2^(-14)
 //                           = 1.0 0 0 0 d_5 ... d_14
-//                      This is accomplised by integer multiplication.
+//                      This is accomplished by integer multiplication.
 //                      It is proved that X_1 indeed always begin
 //                      with 1.0000 in fixed point.
 //
@@ -338,7 +338,7 @@
 //
 //      Calculate       X_2 := X_1 * Z_2 truncated to lsb = 2^(-14)
 //                           = 1.0 0 0 0 0 0 0 0 d_9 d_10 ... d_14
-//                      This is accomplised by integer multiplication.
+//                      This is accomplished by integer multiplication.
 //                      It is proved that X_2 indeed always begin
 //                      with 1.00000000 in fixed point.
 //
diff --git a/ports/sysdeps/ia64/fpu/s_log1pl.S b/ports/sysdeps/ia64/fpu/s_log1pl.S
index f60ce1268f..3c8be02826 100644
--- a/ports/sysdeps/ia64/fpu/s_log1pl.S
+++ b/ports/sysdeps/ia64/fpu/s_log1pl.S
@@ -221,7 +221,7 @@
 //
 //      Calculate	X_1 := X_0 * Z_1 truncated to lsb = 2^(-14)
 //      		     = 1.0 0 0 0 d_5 ... d_14
-//      		This is accomplised by integer multiplication.
+//      		This is accomplished by integer multiplication.
 //      		It is proved that X_1 indeed always begin
 //      		with 1.0000 in fixed point.
 //
@@ -242,7 +242,7 @@
 //
 //      Calculate	X_2 := X_1 * Z_2 truncated to lsb = 2^(-14)
 //      		     = 1.0 0 0 0 0 0 0 0 d_9 d_10 ... d_14
-//      		This is accomplised by integer multiplication.
+//      		This is accomplished by integer multiplication.
 //      		It is proved that X_2 indeed always begin
 //      		with 1.00000000 in fixed point.
 //