[Gmp-commit] /var/hg/gmp: Fix typos in label defs.

mercurial at gmplib.org mercurial at gmplib.org
Mon Mar 4 23:20:03 CET 2013


details:   /var/hg/gmp/rev/eeae8c24e11e
changeset: 15526:eeae8c24e11e
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Mon Mar 04 23:20:00 2013 +0100
description:
Fix typos in label defs.

diffstat:

 mpn/m68k/lshift.asm |   6 +++---
 mpn/m68k/rshift.asm |  16 ++++++++--------
 2 files changed, 11 insertions(+), 11 deletions(-)

diffs (99 lines):

diff -r c726c5bd016e -r eeae8c24e11e mpn/m68k/lshift.asm
--- a/mpn/m68k/lshift.asm	Mon Mar 04 20:49:26 2013 +0100
+++ b/mpn/m68k/lshift.asm	Mon Mar 04 23:20:00 2013 +0100
@@ -104,14 +104,14 @@
 	bcs	L(L1)
 	subql	#1, s_size
 
-L(Loop:)
+L(Loop):
 	movel	M(-,s_ptr), d2
 	movel	d2, d3
 	lsrl	d5, d3
 	orl	d3, d1
 	movel	d1, M(-,res_ptr)
 	lsll	cnt, d2
-L(L1:)
+L(L1):
 	movel	M(-,s_ptr), d1
 	movel	d1, d3
 	lsrl	d5, d3
@@ -123,7 +123,7 @@
 	subl	#0x10000, s_size
 	bcc	L(Loop)
 
-L(Lend:)
+L(Lend):
 	movel	d1, M(-,res_ptr)	C store least significant limb
 
 C Restore used registers from stack frame.
diff -r c726c5bd016e -r eeae8c24e11e mpn/m68k/rshift.asm
--- a/mpn/m68k/rshift.asm	Mon Mar 04 20:49:26 2013 +0100
+++ b/mpn/m68k/rshift.asm	Mon Mar 04 23:20:00 2013 +0100
@@ -79,7 +79,7 @@
 	cmpl	s_ptr, a2
 	bls	L(Lspecial)		C jump if s_ptr >= res_ptr + s_size
 
-L(Lnormal:)
+L(Lnormal):
 	moveql	#32, d5
 	subl	cnt, d5
 	movel	M(s_ptr,+), d2
@@ -94,14 +94,14 @@
 	bcs	L(L1)
 	subql	#1, s_size
 
-L(Loop:)
+L(Loop):
 	movel	M(s_ptr,+), d2
 	movel	d2, d3
 	lsll	d5, d3
 	orl	d3, d1
 	movel	d1, M(res_ptr,+)
 	lsrl	cnt, d2
-L(L1:)
+L(L1):
 	movel	M(s_ptr,+), d1
 	movel	d1, d3
 	lsll	d5, d3
@@ -113,7 +113,7 @@
 	subl	#0x10000, s_size
 	bcc	L(Loop)
 
-L(Lend:)
+L(Lend):
 	movel	d1, M(res_ptr)	C store most significant limb
 
 C Restore used registers from stack frame.
@@ -124,7 +124,7 @@
 C if the source and destination don't overlap, since the function is
 C documented to work for overlapping source and destination.
 
-L(Lspecial:)
+L(Lspecial):
 ifelse(scale_available_p,1,`
 	lea	M(s_ptr,s_size,l,4), s_ptr
 	lea	M(res_ptr,s_size,l,4), res_ptr
@@ -141,11 +141,11 @@
 	bcc	L(LL1)
 	subql	#1, s_size
 
-L(LLoop:)
+L(LLoop):
 	movel	M(-,s_ptr), d2
 	roxrl	#1, d2
 	movel	d2, M(-,res_ptr)
-L(LL1:)
+L(LL1):
 	movel	M(-,s_ptr), d2
 	roxrl	#1, d2
 	movel	d2, M(-,res_ptr)
@@ -157,7 +157,7 @@
 	addl	d0, d0		C restore cy
 	bra	L(LLoop)
 
-L(LLend:)
+L(LLend):
 C Restore used registers from stack frame.
 	moveml	M(sp,+), d2-d6/a2
 	rts


More information about the gmp-commit mailing list