]> sourceware.org Git - glibc.git/commitdiff
* sysdeps/x86_64/memset.S: Jump from bzero to memset using
authorJakub Jelinek <jakub@redhat.com>
Tue, 16 Oct 2007 08:54:19 +0000 (08:54 +0000)
committerJakub Jelinek <jakub@redhat.com>
Tue, 16 Oct 2007 08:54:19 +0000 (08:54 +0000)
a local label rather than HIDDEN_JUMPTARGET.
2007-10-16  Jakub Jelinek  <jakub@redhat.com>

* sysdeps/x86_64/memset.S: Jump from bzero to memset using
a local label rather than HIDDEN_JUMPTARGET.

ChangeLog
sysdeps/x86_64/memset.S

index d5ff2b5a9d636d365d38ac8c731a2a424edbe94e..7b67fe8609ef4215a14405e5207f779f57f35a1f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-16  Jakub Jelinek  <jakub@redhat.com>
+
+       * sysdeps/x86_64/memset.S: Jump from bzero to memset using
+       a local label rather than HIDDEN_JUMPTARGET.
+
 2007-10-15  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/x86_64/cacheinfo.c (__x86_64_shared_cache_size): Define.
index cfc32837e70522b4e9bbda4e1f32c79a35c610c5..2b56a65df3772bfc26255af7641c19bd24f19d65 100644 (file)
@@ -24,7 +24,7 @@
 ENTRY (bzero)
        mov     %rsi,%rdx       /* Adjust parameter.  */
        xorl    %esi,%esi       /* Fill with 0s.  */
-       jmp     HIDDEN_JUMPTARGET (memset)
+       jmp     L(memset_entry)
 END (bzero)
 
 #if defined PIC && !defined NOT_IN_libc
@@ -35,6 +35,7 @@ END (__memset_chk)
 #endif
 
 ENTRY (memset)
+L(memset_entry):
        cmp    $0x1,%rdx
        mov    %rdi,%rax        /* memset returns the dest address.  */
        jne    L(ck2)
This page took 0.054406 seconds and 5 git commands to generate.