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: glibc-2.14.1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c0c0e8819bac3d1b67d1dacf5b2b51485ca3087;p=thirdparty%2Fglibc.git Fix spurious nop at start of __strspn_ia32 (cherry picked from commit 2cae4995416cc25f381686902b4243f0095daedd) --- diff --git a/ChangeLog b/ChangeLog index 823cf21a9bd..521c4533862 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-08-22 Andreas Schwab * elf/dl-deps.c (_dl_map_object_deps): Move check for missing diff --git a/sysdeps/i386/i686/multiarch/strspn.S b/sysdeps/i386/i686/multiarch/strspn.S index dbdf1af4822..cd26c80185b 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) \