about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-07-18 03:44:28 +0000
committerRoland McGrath <roland@gnu.org>2005-07-18 03:44:28 +0000
commitcb02123833fb4f9ce4114b6d5aef513e87171ff5 (patch)
tree6562594d70c932d5ad06177ad1bbf49243cecfff
parentd06b31ce649ed4c50059e3e9a547ec094b4b96c7 (diff)
downloadglibc-cb02123833fb4f9ce4114b6d5aef513e87171ff5.tar.gz
glibc-cb02123833fb4f9ce4114b6d5aef513e87171ff5.tar.xz
glibc-cb02123833fb4f9ce4114b6d5aef513e87171ff5.zip
2005-06-16 Jakub Jelinek <jakub@redhat.com>
	[BZ #1016]
	* sysdeps/ia64/strlen.S (strlen): Change l2 into a local label.
-rw-r--r--sysdeps/ia64/strlen.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ia64/strlen.S b/sysdeps/ia64/strlen.S
index a05b054ed8..e765f2f433 100644
--- a/sysdeps/ia64/strlen.S
+++ b/sysdeps/ia64/strlen.S
@@ -73,7 +73,7 @@ ENTRY(strlen)
 	ld8	val1 = [str], 8;;
 	nop.b	0
 	nop.b 	0
-l2:	ld8.s	val2 = [str], 8		// don't bomb out here
+.l2:	ld8.s	val2 = [str], 8		// don't bomb out here
 	czx1.r	pos0 = val1	
 	;;
 	cmp.ne	p6, p0 = 8, pos0
@@ -81,7 +81,7 @@ l2:	ld8.s	val2 = [str], 8		// don't bomb out here
 	chk.s	val2, .recovery
 .back:
 	mov	val1 = val2	
-	br.cond.dptk l2
+	br.cond.dptk	.l2
 .foundit:
 	sub	tmp = str, origadd	// tmp = crt address - orig
 	add	len = len, pos0;;