diff options
author | Andreas Jaeger <aj@suse.de> | 2004-12-15 08:54:00 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2004-12-15 08:54:00 +0000 |
commit | 1f7e748f63c2d27e28ad8d18c34ad298e4123eba (patch) | |
tree | 76e6b2db89f26ee8e91180b5c6dbc802daf440e8 /sysdeps/ia64/dl-machine.h | |
parent | 917fbe706900299552cfaf34d78ef66d8f128577 (diff) | |
download | glibc-1f7e748f63c2d27e28ad8d18c34ad298e4123eba.zip glibc-1f7e748f63c2d27e28ad8d18c34ad298e4123eba.tar.gz glibc-1f7e748f63c2d27e28ad8d18c34ad298e4123eba.tar.bz2 |
(elf_machine_rela): Mark auto instead of static, add always_inline attribute. (elf_machine_rela_relative): Likewise. (elf_machine_lazy_rel): Likewise.
Diffstat (limited to 'sysdeps/ia64/dl-machine.h')
-rw-r--r-- | sysdeps/ia64/dl-machine.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sysdeps/ia64/dl-machine.h b/sysdeps/ia64/dl-machine.h index 8714c01..3108047 100644 --- a/sysdeps/ia64/dl-machine.h +++ b/sysdeps/ia64/dl-machine.h @@ -499,7 +499,8 @@ elf_machine_plt_value (struct link_map *map, const Elf64_Rela *reloc, /* Perform the relocation specified by RELOC and SYM (which is fully resolved). MAP is the object containing the reloc. */ -static inline void +auto inline void +__attribute ((always_inline)) elf_machine_rela (struct link_map *map, const Elf64_Rela *reloc, const Elf64_Sym *sym, @@ -603,7 +604,8 @@ elf_machine_rela (struct link_map *map, can be skipped. */ #define ELF_MACHINE_REL_RELATIVE 1 -static inline void +auto inline void +__attribute ((always_inline)) elf_machine_rela_relative (Elf64_Addr l_addr, const Elf64_Rela *reloc, void *const reloc_addr_arg) { @@ -615,7 +617,8 @@ elf_machine_rela_relative (Elf64_Addr l_addr, const Elf64_Rela *reloc, } /* Perform a RELATIVE reloc on the .got entry that transfers to the .plt. */ -static inline void +auto inline void +__attribute ((always_inline)) elf_machine_lazy_rel (struct link_map *map, Elf64_Addr l_addr, const Elf64_Rela *reloc) { |