public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] m68k: fix __mpn_lshift and __mpn_rshift for non-68020
@ 2023-08-17 19:56 Andreas Schwab
  0 siblings, 0 replies; only message in thread
From: Andreas Schwab @ 2023-08-17 19:56 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=464fd8249e8b791248cab7b0e0cd91757435fa9e

commit 464fd8249e8b791248cab7b0e0cd91757435fa9e
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Thu Aug 17 17:15:34 2023 +0200

    m68k: fix __mpn_lshift and __mpn_rshift for non-68020
    
    From revision 03f3d275d0d6 in the gmp repository.

Diff:
---
 sysdeps/m68k/m680x0/lshift.S | 4 ++--
 sysdeps/m68k/m680x0/rshift.S | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sysdeps/m68k/m680x0/lshift.S b/sysdeps/m68k/m680x0/lshift.S
index 2aee10348e..4240738959 100644
--- a/sysdeps/m68k/m680x0/lshift.S
+++ b/sysdeps/m68k/m680x0/lshift.S
@@ -77,8 +77,8 @@ L(Lnormal:)
 #else /* not mc68000 */
 	movel	R(s_size),R(d0)
 	asll	#2,R(d0)
-	addl	R(s_size),R(s_ptr)
-	addl	R(s_size),R(res_ptr)
+	addl	R(d0),R(s_ptr)
+	addl	R(d0),R(res_ptr)
 #endif
 	movel	MEM_PREDEC(s_ptr),R(d2)
 	movel	R(d2),R(d0)
diff --git a/sysdeps/m68k/m680x0/rshift.S b/sysdeps/m68k/m680x0/rshift.S
index d16bca9307..d56a2b4a44 100644
--- a/sysdeps/m68k/m680x0/rshift.S
+++ b/sysdeps/m68k/m680x0/rshift.S
@@ -127,8 +127,8 @@ L(Lspecial:)
 #else /* not mc68000 */
 	movel	R(s_size),R(d0)
 	asll	#2,R(d0)
-	addl	R(s_size),R(s_ptr)
-	addl	R(s_size),R(res_ptr)
+	addl	R(d0),R(s_ptr)
+	addl	R(d0),R(res_ptr)
 #endif
 
 	clrl	R(d0)			/* initialize carry */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-08-17 19:56 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-17 19:56 [glibc] m68k: fix __mpn_lshift and __mpn_rshift for non-68020 Andreas Schwab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).