diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-02-22 01:58:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-02-22 01:58:38 +0000 |
commit | af272d4fa88306ec6a9c112cae6ebbb45f0b296e (patch) | |
tree | 1483cd90adb37e8e6e25622bfeca38d003a95c1b | |
parent | 777bc09586f66bbc38741dcad44a56db74e90e3b (diff) | |
download | glibc-af272d4fa88306ec6a9c112cae6ebbb45f0b296e.tar.gz glibc-af272d4fa88306ec6a9c112cae6ebbb45f0b296e.tar.xz glibc-af272d4fa88306ec6a9c112cae6ebbb45f0b296e.zip |
* elf/dl-reloc.c (_dl_nothread_init_static_tls): Avoid using
THREAD_DTV multiple times, this minimally reduces code size on some archs.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | elf/dl-reloc.c | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index 5feffacac3..1253fefb3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-02-21 Ulrich Drepper <drepper@redhat.com> + + * elf/dl-reloc.c (_dl_nothread_init_static_tls): Avoid using + THREAD_DTV multiple times, this minimally reduces code size on + some archs. + 2005-02-12 Simon Josefsson <jas@extundo.com > * iconvme.h: New file, extracted from toutf8.c but improved. diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c index b680683198..c3a58dd921 100644 --- a/elf/dl-reloc.c +++ b/elf/dl-reloc.c @@ -1,5 +1,5 @@ /* Relocate a shared object and resolve its references to other loaded objects. - Copyright (C) 1995-2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 1995-2004, 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -124,8 +124,9 @@ _dl_nothread_init_static_tls (struct link_map *map) # endif /* Fill in the DTV slot so that a later LD/GD access will find it. */ - THREAD_DTV ()[map->l_tls_modid].pointer.val = dest; - THREAD_DTV ()[map->l_tls_modid].pointer.is_static = true; + dtv_t *dtv = THREAD_DTV (); + dtv[map->l_tls_modid].pointer.val = dest; + dtv[map->l_tls_modid].pointer.is_static = true; /* Initialize the memory. */ memset (__mempcpy (dest, map->l_tls_initimage, map->l_tls_initimage_size), |