diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-05-30 23:02:29 +0000 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-05-30 23:02:29 +0000 |
commit | 65cc53fe7c6556b90159b8c3da1eb283792387db (patch) | |
tree | 879c71521e54f86942bf3ba2a39f9b4bc2dfb915 /sysdeps/sparc | |
parent | 4d0fe291aed3a476a3b59c4ecfae9d35ac0f15e8 (diff) | |
download | glibc-65cc53fe7c6556b90159b8c3da1eb283792387db.zip glibc-65cc53fe7c6556b90159b8c3da1eb283792387db.tar.gz glibc-65cc53fe7c6556b90159b8c3da1eb283792387db.tar.bz2 |
Fix misspellings in sysdeps/ -- BZ 25337
Diffstat (limited to 'sysdeps/sparc')
-rw-r--r-- | sysdeps/sparc/atomic-machine.h | 2 | ||||
-rw-r--r-- | sysdeps/sparc/fpu/feupdateenv.c | 2 | ||||
-rw-r--r-- | sysdeps/sparc/sparc32/sparcv9/rem.S | 2 | ||||
-rw-r--r-- | sysdeps/sparc/sparc32/sparcv9/sdiv.S | 2 | ||||
-rw-r--r-- | sysdeps/sparc/sparc32/sparcv9/udiv.S | 2 | ||||
-rw-r--r-- | sysdeps/sparc/sparc32/sparcv9/urem.S | 2 | ||||
-rw-r--r-- | sysdeps/sparc/sparc64/memmove.S | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/sysdeps/sparc/atomic-machine.h b/sysdeps/sparc/atomic-machine.h index 855b7c4..de9a626 100644 --- a/sysdeps/sparc/atomic-machine.h +++ b/sysdeps/sparc/atomic-machine.h @@ -30,7 +30,7 @@ #define ATOMIC_EXCHANGE_USES_CAS __HAVE_64B_ATOMICS /* Compare and exchange. - For all "bool" routines, we return FALSE if exchange succesful. */ + For all "bool" routines, we return FALSE if exchange successful. */ #define __arch_compare_and_exchange_val_int(mem, newval, oldval, model) \ ({ \ diff --git a/sysdeps/sparc/fpu/feupdateenv.c b/sysdeps/sparc/fpu/feupdateenv.c index 4c84dca..821cd7e 100644 --- a/sysdeps/sparc/fpu/feupdateenv.c +++ b/sysdeps/sparc/fpu/feupdateenv.c @@ -32,7 +32,7 @@ __feupdateenv (const fenv_t *envp) /* Install new environment. */ __fesetenv (envp); - /* Raise the safed exception. Incidently for us the implementation + /* Raise the saved exception. Incidentally for us the implementation defined format of the values in objects of type fexcept_t is the same as the ones specified using the FE_* constants. */ __feraiseexcept ((int) tmp); diff --git a/sysdeps/sparc/sparc32/sparcv9/rem.S b/sysdeps/sparc/sparc32/sparcv9/rem.S index 5385bd8..7eb3780 100644 --- a/sysdeps/sparc/sparc32/sparcv9/rem.S +++ b/sysdeps/sparc/sparc32/sparcv9/rem.S @@ -1,7 +1,7 @@ /* * Sparc v9 has divide. * As divx takes 68 cycles and sdivcc only 36, - * we use sdivcc eventhough it is deprecated. + * we use sdivcc even though it is deprecated. */ #include <sysdep.h> diff --git a/sysdeps/sparc/sparc32/sparcv9/sdiv.S b/sysdeps/sparc/sparc32/sparcv9/sdiv.S index d765514..e58b727 100644 --- a/sysdeps/sparc/sparc32/sparcv9/sdiv.S +++ b/sysdeps/sparc/sparc32/sparcv9/sdiv.S @@ -1,7 +1,7 @@ /* * Sparc v9 has divide. * As divx takes 68 cycles and sdivcc only 36, - * we use sdivcc eventhough it is deprecated. + * we use sdivcc even though it is deprecated. */ #include <sysdep.h> diff --git a/sysdeps/sparc/sparc32/sparcv9/udiv.S b/sysdeps/sparc/sparc32/sparcv9/udiv.S index 368f85e..13e0925 100644 --- a/sysdeps/sparc/sparc32/sparcv9/udiv.S +++ b/sysdeps/sparc/sparc32/sparcv9/udiv.S @@ -1,7 +1,7 @@ /* * Sparc v9 has divide. * As divx takes 68 cycles and udiv only 37, - * we use udiv eventhough it is deprecated. + * we use udiv even though it is deprecated. */ #include <sysdep.h> diff --git a/sysdeps/sparc/sparc32/sparcv9/urem.S b/sysdeps/sparc/sparc32/sparcv9/urem.S index cab16c9..76fa49e 100644 --- a/sysdeps/sparc/sparc32/sparcv9/urem.S +++ b/sysdeps/sparc/sparc32/sparcv9/urem.S @@ -1,7 +1,7 @@ /* * Sparc v9 has divide. * As divx takes 68 cycles and udiv only 37, - * we use udiv eventhough it is deprecated. + * we use udiv even though it is deprecated. */ #include <sysdep.h> diff --git a/sysdeps/sparc/sparc64/memmove.S b/sysdeps/sparc/sparc64/memmove.S index e38343a..db6f4f0 100644 --- a/sysdeps/sparc/sparc64/memmove.S +++ b/sysdeps/sparc/sparc64/memmove.S @@ -58,7 +58,7 @@ ENTRY(memmove) inc 2, %o1 srl %o3, 8, %o4 stb %o4, [%o0] /* have to do bytes, */ - stb %o3, [%o0 + 1] /* don't know dst alingment */ + stb %o3, [%o0 + 1] /* don't know dst alignment */ inc 2, %o0 dec 2, %o2 |