]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 28 Feb 2004 19:33:17 +0000 (19:33 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 28 Feb 2004 19:33:17 +0000 (19:33 +0000)
2004-02-28  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/i386/i686/memcmp.S: Move table to .rodata.  Patch by HJ Lu.

ChangeLog
sysdeps/i386/i686/memcmp.S

index 3d41441f0b4aa6b9a9b9b3c1f29312e0c20ce006..0c8a9c3824a6a6e86b5f360953dfc717fda92e6f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-02-28  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/i386/i686/memcmp.S: Move table to .rodata.  Patch by HJ Lu.
+
 2004-02-27  Jakub Jelinek  <jakub@redhat.com>
 
        * elf/rtld.c (dl_main): Adjust l->l_ld of the vDSO by l->l_addr.
index 920ae72df3d6ff37b78456ea29345f1721f7388b..f382e807fab59057ef85b6bf428b4c8ae2ba6efc 100644 (file)
 /* Load an entry in a jump table into EBX.  TABLE is a jump table
    with relative offsets.  INDEX is a register contains the index
    into the jump table.  */
-#define LOAD_JUMP_TABLE_ENTRY(TABLE, INDEX)                    \
-  /* We first load PC into EBX.  */                            \
-  call __i686.get_pc_thunk.bx;                                 \
-  /* Get the address of the jump table.  */                    \
-  addl $(TABLE - .), %ebx;                                     \
-  /* Get the entry and convert the relative offset to the      \
-     absolute address.  */                                     \
+#define LOAD_JUMP_TABLE_ENTRY(TABLE, INDEX) \
+  /* We first load PC into EBX.  */                                          \
+  call __i686.get_pc_thunk.bx;                                               \
+  /* Get the address of the jump table.  */                                  \
+  addl $(TABLE - .), %ebx;                                                   \
+  /* Get the entry and convert the relative offset to the                    \
+     absolute address.  */                                                   \
   addl (%ebx,INDEX,4), %ebx
 
 #ifdef HAVE_HIDDEN
@@ -351,6 +351,7 @@ L(set):
        popl    %esi
        RETURN
 
+       .section        .rodata
        ALIGN (2)
 L(table_32bytes) :
        .long   L(0bytes) - . + 0x0
This page took 0.054795 seconds and 5 git commands to generate.