diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-08-30 14:32:07 +0200 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2013-08-30 18:08:59 +0200 |
commit | 382466e04e347d3b3fa221897efb8f4cdc239105 (patch) | |
tree | 502407214f530137467309e605493cc0dd18f274 /ports/sysdeps/ia64/fpu | |
parent | 6b06ac56cdfc9293908724e51e827534e97819aa (diff) | |
download | glibc-382466e04e347d3b3fa221897efb8f4cdc239105.tar.gz glibc-382466e04e347d3b3fa221897efb8f4cdc239105.tar.xz glibc-382466e04e347d3b3fa221897efb8f4cdc239105.zip |
Fix typos.
Diffstat (limited to 'ports/sysdeps/ia64/fpu')
-rw-r--r-- | ports/sysdeps/ia64/fpu/e_logf.S | 4 | ||||
-rw-r--r-- | ports/sysdeps/ia64/fpu/libm_reduce.S | 6 | ||||
-rw-r--r-- | ports/sysdeps/ia64/fpu/s_erfc.S | 2 | ||||
-rw-r--r-- | ports/sysdeps/ia64/fpu/s_erfcf.S | 2 | ||||
-rw-r--r-- | ports/sysdeps/ia64/fpu/s_erfcl.S | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/ports/sysdeps/ia64/fpu/e_logf.S b/ports/sysdeps/ia64/fpu/e_logf.S index 885082fe23..9175f9551b 100644 --- a/ports/sysdeps/ia64/fpu/e_logf.S +++ b/ports/sysdeps/ia64/fpu/e_logf.S @@ -838,7 +838,7 @@ GLOBAL_IEEE754_ENTRY(log10f) { .mib setf.exp FR_A2 = GR_05 // create A2 sub GR_de = GR_Exp,GR_05 // biased_exponent_of_x - 0xFFFE - // needed to comparion with 0.5 and 2.0 + // needed for comparison with 0.5 and 2.0 br.cond.sptk logf_log10f_common };; GLOBAL_IEEE754_END(log10f) @@ -873,7 +873,7 @@ GLOBAL_IEEE754_ENTRY(logf) setf.d FR_A3 = GR_A3 // create A3 fcmp.eq.s1 p13,p14 = f0,f0 // p13 - true for logf sub GR_de = GR_Exp,GR_05 // biased_exponent_of_x - 0xFFFE - // needed to comparion with 0.5 and 2.0 + // needed for comparison with 0.5 and 2.0 } { .mlx setf.exp FR_A2 = GR_05 // create A2 diff --git a/ports/sysdeps/ia64/fpu/libm_reduce.S b/ports/sysdeps/ia64/fpu/libm_reduce.S index 8bdf91d6de..8b132497b9 100644 --- a/ports/sysdeps/ia64/fpu/libm_reduce.S +++ b/ports/sysdeps/ia64/fpu/libm_reduce.S @@ -75,7 +75,7 @@ // // IEEE Special Conditions: // -// No condions should be raised. +// No conditions should be raised. // //********************************************************************* // @@ -288,7 +288,7 @@ // // Set sgn_x := sign(x); x := |x|; x_lo := 2 lsb of x. // -// In memory, 2/pi is stored contigously as +// In memory, 2/pi is stored contiguously as // // 0x00000000 0x00000000 0xA2F.... // ^ @@ -786,7 +786,7 @@ __libm_pi_by_2_reduce: // setf.sig FR_ScaleP3 = GR_x_lo // fmerge.se FR_X = FR_X,FR_ScaleP3 // Set sgn_x := sign(x); x := |x|; x_lo := 2 lsb of x. -// 2/pi is stored contigously as +// 2/pi is stored contiguously as // 0x00000000 0x00000000.0xA2F.... // M = EXP - BIAS ( M >= 63) // Given x = 2^m * 1.xxxx...xxx; we calculate L := 62 - m. diff --git a/ports/sysdeps/ia64/fpu/s_erfc.S b/ports/sysdeps/ia64/fpu/s_erfc.S index c67c61abef..6729cda2e5 100644 --- a/ports/sysdeps/ia64/fpu/s_erfc.S +++ b/ports/sysdeps/ia64/fpu/s_erfc.S @@ -65,7 +65,7 @@ // // Let P14(z) - polynomial approximation of degree 14 for function // erfc(z+x(i)) * exp( (z+x(i))^2) and 0 <= z <= x(i+1)-x(i). -// Polynomial coeffitients we have in the table erfc_p_table. +// Polynomial coefficients we have in the table erfc_p_table. // // So we can find result for erfc(x) as above. // Algorithm description for exp function see below. diff --git a/ports/sysdeps/ia64/fpu/s_erfcf.S b/ports/sysdeps/ia64/fpu/s_erfcf.S index ce6be8db62..97c9037cfb 100644 --- a/ports/sysdeps/ia64/fpu/s_erfcf.S +++ b/ports/sysdeps/ia64/fpu/s_erfcf.S @@ -63,7 +63,7 @@ // // Let P15(x) - polynomial approximation of degree 15 for function // erfcf(x) * exp( x^2) and x(i) <= x <= x(i+1), i = 0,1,2,3 -// Polynomial coeffitients we have in the table erfc_p_table. +// Polynomial coefficients we have in the table erfc_p_table. // // So we can find result for erfcf(x) as above. // Algorithm description for exp function see below. diff --git a/ports/sysdeps/ia64/fpu/s_erfcl.S b/ports/sysdeps/ia64/fpu/s_erfcl.S index b9f7004aad..79b94a85ab 100644 --- a/ports/sysdeps/ia64/fpu/s_erfcl.S +++ b/ports/sysdeps/ia64/fpu/s_erfcl.S @@ -71,7 +71,7 @@ // -0.5*[x(i+1)-x(i)] <= z <= 0.5*[x(i+1)-x(i)]. // // Let Q(z)= (P(z)- S)/S, S = a0, rounded to 16 bits. -// Polynomial coeffitients for Q(z) we have in the table erfc_Q_table as +// Polynomial coefficients for Q(z) we have in the table erfc_Q_table as // long double values // // We use multi precision to calculate input argument -x^2 for expl and |