mirror of git://sourceware.org/git/glibc.git
(elf_machine_rela_relative): Replace static inline by auto inline, add always_inline attribute. (elf_machine_rel): Likewise. (elf_machine_rela): Likewise. (elf_machine_lazy_rel): Likewise. (elf_machine_lazy_rela): Likewise. (elf_machine_rel_relative): Likewise.
2004-09-27 Andreas Jaeger <aj@suse.de> * sysdeps/i386/dl-machine.h (elf_machine_rela_relative): Replace static inline by auto inline, add always_inline attribute. (elf_machine_rel): Likewise. (elf_machine_rela): Likewise. (elf_machine_lazy_rel): Likewise. (elf_machine_lazy_rela): Likewise. (elf_machine_rel_relative): Likewise.
This commit is contained in:
parent
c105351f1e
commit
7dfde5a02a
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2004-09-27 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* sysdeps/i386/dl-machine.h (elf_machine_rela_relative): Replace
|
||||||
|
static inline by auto inline, add always_inline attribute.
|
||||||
|
(elf_machine_rel): Likewise.
|
||||||
|
(elf_machine_rela): Likewise.
|
||||||
|
(elf_machine_lazy_rel): Likewise.
|
||||||
|
(elf_machine_lazy_rela): Likewise.
|
||||||
|
(elf_machine_rel_relative): Likewise.
|
||||||
|
|
||||||
2004-09-27 Ulrich Drepper <drepper@redhat.com>
|
2004-09-27 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* sunrpc/xdr_intXX_t.c: Add xdr_quad_t and xdr_u_quad_t aliases.
|
* sunrpc/xdr_intXX_t.c: Add xdr_quad_t and xdr_u_quad_t aliases.
|
||||||
|
|
|
@ -388,7 +388,7 @@ elf_machine_plt_value (struct link_map *map, const Elf32_Rel *reloc,
|
||||||
/* Perform the relocation specified by RELOC and SYM (which is fully resolved).
|
/* Perform the relocation specified by RELOC and SYM (which is fully resolved).
|
||||||
MAP is the object containing the reloc. */
|
MAP is the object containing the reloc. */
|
||||||
|
|
||||||
static inline void
|
auto inline void
|
||||||
__attribute ((always_inline))
|
__attribute ((always_inline))
|
||||||
elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
|
elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
|
||||||
const Elf32_Sym *sym, const struct r_found_version *version,
|
const Elf32_Sym *sym, const struct r_found_version *version,
|
||||||
|
@ -533,7 +533,8 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef RTLD_BOOTSTRAP
|
#ifndef RTLD_BOOTSTRAP
|
||||||
static inline void
|
auto inline void
|
||||||
|
__attribute__ ((always_inline))
|
||||||
elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
|
elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
|
||||||
const Elf32_Sym *sym, const struct r_found_version *version,
|
const Elf32_Sym *sym, const struct r_found_version *version,
|
||||||
void *const reloc_addr_arg)
|
void *const reloc_addr_arg)
|
||||||
|
@ -639,7 +640,7 @@ elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
|
||||||
}
|
}
|
||||||
#endif /* !RTLD_BOOTSTRAP */
|
#endif /* !RTLD_BOOTSTRAP */
|
||||||
|
|
||||||
static inline void
|
auto inline void
|
||||||
__attribute ((always_inline))
|
__attribute ((always_inline))
|
||||||
elf_machine_rel_relative (Elf32_Addr l_addr, const Elf32_Rel *reloc,
|
elf_machine_rel_relative (Elf32_Addr l_addr, const Elf32_Rel *reloc,
|
||||||
void *const reloc_addr_arg)
|
void *const reloc_addr_arg)
|
||||||
|
@ -650,7 +651,8 @@ elf_machine_rel_relative (Elf32_Addr l_addr, const Elf32_Rel *reloc,
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef RTLD_BOOTSTRAP
|
#ifndef RTLD_BOOTSTRAP
|
||||||
static inline void
|
auto inline void
|
||||||
|
__attribute__ ((always_inline))
|
||||||
elf_machine_rela_relative (Elf32_Addr l_addr, const Elf32_Rela *reloc,
|
elf_machine_rela_relative (Elf32_Addr l_addr, const Elf32_Rela *reloc,
|
||||||
void *const reloc_addr_arg)
|
void *const reloc_addr_arg)
|
||||||
{
|
{
|
||||||
|
@ -659,7 +661,8 @@ elf_machine_rela_relative (Elf32_Addr l_addr, const Elf32_Rela *reloc,
|
||||||
}
|
}
|
||||||
#endif /* !RTLD_BOOTSTRAP */
|
#endif /* !RTLD_BOOTSTRAP */
|
||||||
|
|
||||||
static inline void
|
auto inline void
|
||||||
|
__attribute__ ((always_inline))
|
||||||
elf_machine_lazy_rel (struct link_map *map,
|
elf_machine_lazy_rel (struct link_map *map,
|
||||||
Elf32_Addr l_addr, const Elf32_Rel *reloc)
|
Elf32_Addr l_addr, const Elf32_Rel *reloc)
|
||||||
{
|
{
|
||||||
|
@ -680,7 +683,8 @@ elf_machine_lazy_rel (struct link_map *map,
|
||||||
|
|
||||||
#ifndef RTLD_BOOTSTRAP
|
#ifndef RTLD_BOOTSTRAP
|
||||||
|
|
||||||
static inline void
|
auto inline void
|
||||||
|
__attribute__ ((always_inline))
|
||||||
elf_machine_lazy_rela (struct link_map *map,
|
elf_machine_lazy_rela (struct link_map *map,
|
||||||
Elf32_Addr l_addr, const Elf32_Rela *reloc)
|
Elf32_Addr l_addr, const Elf32_Rela *reloc)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue