From: Andreas Schwab Date: Tue, 23 Aug 2011 13:53:51 +0000 (+0200) Subject: Fix spurious nop at start of __strspn_ia32 X-Git-Tag: upstream/2.30~12141 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2cae4995416cc25f381686902b4243f0095daedd;p=external%2Fglibc.git Fix spurious nop at start of __strspn_ia32 --- diff --git a/ChangeLog b/ChangeLog index 915a447..3de98c9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-08-23 Andreas Schwab + + * sysdeps/i386/i686/multiarch/strspn.S (ENTRY): Add missing + backslash. + 2011-07-04 Aurelien Jarno * 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 dbdf1af..cd26c80 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) \