diff options
Diffstat (limited to 'sysdeps/m68k')
-rw-r--r-- | sysdeps/m68k/lshift.S | 2 | ||||
-rw-r--r-- | sysdeps/m68k/rshift.S | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/m68k/lshift.S b/sysdeps/m68k/lshift.S index 77184d6ee5..dc2da206d1 100644 --- a/sysdeps/m68k/lshift.S +++ b/sysdeps/m68k/lshift.S @@ -118,7 +118,7 @@ L(Lend:) rts /* We loop from least significant end of the arrays, which is only - permissable if the source and destination don't overlap, since the + permissible if the source and destination don't overlap, since the function is documented to work for overlapping source and destination. */ L(Lspecial:) diff --git a/sysdeps/m68k/rshift.S b/sysdeps/m68k/rshift.S index 01dde0ab50..f529390cf8 100644 --- a/sysdeps/m68k/rshift.S +++ b/sysdeps/m68k/rshift.S @@ -71,7 +71,7 @@ L(Lnormal:) movel MEM_POSTINC(s_ptr),R(d2) movel R(d2),R(d0) lsll R(d5),R(d0) /* compute carry limb */ - + lsrl R(cnt),R(d2) movel R(d2),R(d1) subql #1,R(s_size) @@ -107,7 +107,7 @@ L(Lend:) rts /* We loop from most significant end of the arrays, which is only - permissable if the source and destination don't overlap, since the + permissible if the source and destination don't overlap, since the function is documented to work for overlapping source and destination. */ L(Lspecial:) |