[617118d] | 1 | Submitted By: Ryan Oliver <ryan.oliver@pha.com.au>
|
---|
| 2 | Date: 2005-05-03
|
---|
| 3 | Initial Package Version: 2.3.4
|
---|
| 4 | Origin: glibc cvs ( libc/sysdeps/sparc/sparc32/dl-machine.h -r1.54 )
|
---|
| 5 | Upstream Status: See Origin
|
---|
| 6 | Description:
|
---|
| 7 |
|
---|
| 8 | (RO: edited changelog entry)
|
---|
| 9 |
|
---|
| 10 | 2005-03-15 Jakub Jelinek <jakub@redhat.com>
|
---|
| 11 |
|
---|
| 12 | * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela,
|
---|
| 13 | elf_machine_rela_relative, elf_machine_lazy_rel): Add always_inline
|
---|
| 14 | attribute. Change static inline into auto inline.
|
---|
| 15 |
|
---|
| 16 | ===================================================================
|
---|
| 17 | RCS file: /cvs/glibc/libc/sysdeps/sparc/sparc32/dl-machine.h,v
|
---|
| 18 | retrieving revision 1.53
|
---|
| 19 | retrieving revision 1.54
|
---|
| 20 | diff -u -r1.53 -r1.54
|
---|
| 21 | --- libc/sysdeps/sparc/sparc32/dl-machine.h 2004/05/17 18:20:30 1.53
|
---|
| 22 | +++ libc/sysdeps/sparc/sparc32/dl-machine.h 2005/03/15 22:57:24 1.54
|
---|
| 23 | @@ -1,5 +1,5 @@
|
---|
| 24 | /* Machine-dependent ELF dynamic relocation inline functions. SPARC version.
|
---|
| 25 | - Copyright (C) 1996-2003, 2004 Free Software Foundation, Inc.
|
---|
| 26 | + Copyright (C) 1996-2003, 2004, 2005 Free Software Foundation, Inc.
|
---|
| 27 | This file is part of the GNU C Library.
|
---|
| 28 |
|
---|
| 29 | The GNU C Library is free software; you can redistribute it and/or
|
---|
| 30 | @@ -411,7 +411,8 @@
|
---|
| 31 | /* Perform the relocation specified by RELOC and SYM (which is fully resolved).
|
---|
| 32 | MAP is the object containing the reloc. */
|
---|
| 33 |
|
---|
| 34 | -static inline void
|
---|
| 35 | +auto inline void
|
---|
| 36 | +__attribute__ ((always_inline))
|
---|
| 37 | elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc,
|
---|
| 38 | const Elf32_Sym *sym, const struct r_found_version *version,
|
---|
| 39 | void *const reloc_addr_arg)
|
---|
| 40 | @@ -593,7 +594,8 @@
|
---|
| 41 | }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | -static inline void
|
---|
| 45 | +auto inline void
|
---|
| 46 | +__attribute__ ((always_inline))
|
---|
| 47 | elf_machine_rela_relative (Elf32_Addr l_addr, const Elf32_Rela *reloc,
|
---|
| 48 | void *const reloc_addr_arg)
|
---|
| 49 | {
|
---|
| 50 | @@ -601,7 +603,8 @@
|
---|
| 51 | *reloc_addr += l_addr + reloc->r_addend;
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | -static inline void
|
---|
| 55 | +auto inline void
|
---|
| 56 | +__attribute__ ((always_inline))
|
---|
| 57 | elf_machine_lazy_rel (struct link_map *map,
|
---|
| 58 | Elf32_Addr l_addr, const Elf32_Rela *reloc)
|
---|
| 59 | {
|
---|