Submitted By: Ryan Oliver Date: 2005-05-03 Initial Package Version: 2.3.4 Origin: glibc cvs ( libc/sysdeps/sparc/sparc64/dl-machine.h -r1.48 ) Upstream Status: See Origin Description: (RO: edited changelog entry) 2005-03-15 Jakub Jelinek * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela, elf_machine_rela_relative, elf_machine_lazy_rel): Add always_inline attribute. Change static inline into auto inline. =================================================================== RCS file: /cvs/glibc/libc/sysdeps/sparc/sparc64/dl-machine.h,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- libc/sysdeps/sparc/sparc64/dl-machine.h 2004/03/05 10:27:55 1.47 +++ libc/sysdeps/sparc/sparc64/dl-machine.h 2005/03/15 22:57:26 1.48 @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. Sparc64 version. - Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 + Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -238,7 +238,8 @@ /* 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, const struct r_found_version *version, void *const reloc_addr_arg) @@ -430,7 +431,8 @@ } } -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) { @@ -438,7 +440,8 @@ *reloc_addr = l_addr + reloc->r_addend; } -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) {