diff options
author | Andreas Schwab <schwab@redhat.com> | 2011-08-23 15:53:51 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2011-09-07 11:48:06 +0200 |
commit | 8c0c0e8819bac3d1b67d1dacf5b2b51485ca3087 (patch) | |
tree | 32050ff0996f8dbfd80a1b0ec24409a4ee98de22 | |
parent | e9f35ea6af4b3f9dae6d28e8a306550fd9b7aeb5 (diff) | |
download | glibc-8c0c0e8819bac3d1b67d1dacf5b2b51485ca3087.tar.gz glibc-8c0c0e8819bac3d1b67d1dacf5b2b51485ca3087.tar.xz glibc-8c0c0e8819bac3d1b67d1dacf5b2b51485ca3087.zip |
Fix spurious nop at start of __strspn_ia32
(cherry picked from commit 2cae4995416cc25f381686902b4243f0095daedd)
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/i386/i686/multiarch/strspn.S | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 823cf21a9b..521c453386 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-08-22 Andreas Schwab <schwab@redhat.com> * 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 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) \ |