source: patches/glibc-2.3.4-gcc4_elf_fixes_individual/glibc-2.3.4-gcc4_sparc64_elf_dl-machine.patch @ 617118d

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 617118d was 617118d, checked in by Jim Gifford <clfs@…>, 18 years ago

r561@server (orig r559): root | 2005-06-05 02:38:49 -0700
Fixed Directory Structure

  • Property mode set to 100644
File size: 1.9 KB
  • libc/sysdeps/sparc/sparc64/dl-machine.h

    Submitted By: Ryan Oliver <ryan.oliver@pha.com.au>
    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  <jakub@redhat.com>
    
            * 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
     
    11/* Machine-dependent ELF dynamic relocation inline functions.  Sparc64 version.
    2    Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
     2   Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
    33        Free Software Foundation, Inc.
    44   This file is part of the GNU C Library.
    55
     
    238238/* Perform the relocation specified by RELOC and SYM (which is fully resolved).
    239239   MAP is the object containing the reloc.  */
    240240
    241 static inline void
     241auto inline void
     242__attribute__ ((always_inline))
    242243elf_machine_rela (struct link_map *map, const Elf64_Rela *reloc,
    243244                  const Elf64_Sym *sym, const struct r_found_version *version,
    244245                  void *const reloc_addr_arg)
     
    430431    }
    431432}
    432433
    433 static inline void
     434auto inline void
     435__attribute__ ((always_inline))
    434436elf_machine_rela_relative (Elf64_Addr l_addr, const Elf64_Rela *reloc,
    435437                           void *const reloc_addr_arg)
    436438{
     
    438440  *reloc_addr = l_addr + reloc->r_addend;
    439441}
    440442
    441 static inline void
     443auto inline void
     444__attribute__ ((always_inline))
    442445elf_machine_lazy_rel (struct link_map *map,
    443446                      Elf64_Addr l_addr, const Elf64_Rela *reloc)
    444447{
Note: See TracBrowser for help on using the repository browser.