about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2011-08-23 15:53:51 +0200
committerAndreas Schwab <schwab@redhat.com>2011-08-23 15:53:51 +0200
commit2cae4995416cc25f381686902b4243f0095daedd (patch)
treebc4564135a1491fd88b2c026d3a37f6bfdbc5856
parent873a772e304d8b56e8f91ac15e9bc08dfde0ffb1 (diff)
downloadglibc-2cae4995416cc25f381686902b4243f0095daedd.tar.gz
glibc-2cae4995416cc25f381686902b4243f0095daedd.tar.xz
glibc-2cae4995416cc25f381686902b4243f0095daedd.zip
Fix spurious nop at start of __strspn_ia32
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/i386/i686/multiarch/strspn.S4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 915a447aac..3de98c93b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-08-23  Andreas Schwab  <schwab@redhat.com>
+
+	* sysdeps/i386/i686/multiarch/strspn.S (ENTRY): Add missing
+	backslash.
+
 2011-07-04  Aurelien Jarno  <aurelien@aurel32.net>
 
 	* sysdeps/powerpc/dl-tls.h: Add _PPC_DL_TLS_H inclusion
diff --git a/sysdeps/i386/i686/multiarch/strspn.S b/sysdeps/i386/i686/multiarch/strspn.S
index dbdf1af482..cd26c80185 100644
--- a/sysdeps/i386/i686/multiarch/strspn.S
+++ b/sysdeps/i386/i686/multiarch/strspn.S
@@ -76,8 +76,8 @@ END(strspn)
 # define ENTRY(name) \
 	.type __strspn_ia32, @function; \
 	.globl __strspn_ia32; \
-	.p2align 4
-	__strspn_ia32: cfi_startproc; \
+	.p2align 4; \
+__strspn_ia32: cfi_startproc; \
 	CALL_MCOUNT
 # undef END
 # define END(name) \