]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2003-03-03 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Mon, 3 Mar 2003 09:45:09 +0000 (09:45 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 3 Mar 2003 09:45:09 +0000 (09:45 +0000)
* sysdeps/ia64/dl-fptr.c (__ia64_make_fptr): Revert last change.
* sysdeps/ia64/dl-machine.h: Likewise.
* sysdeps/ia64/dl-symaddr.c (_dl_symbol_address): Remove const from
argument type.
* sysdeps/ia64/dl-lookupcfg.h: Update decl.

sysdeps/ia64/dl-fptr.c
sysdeps/ia64/dl-lookupcfg.h
sysdeps/ia64/dl-machine.h
sysdeps/ia64/dl-symaddr.c

index 3a4d8247a870a95a440e6eb8c6aa0510e396247c..3c362b0f877f66294471241448db4ab0b540296c 100644 (file)
@@ -191,8 +191,7 @@ make_fptr_table (struct link_map *map)
 }
 
 Elf64_Addr
-__ia64_make_fptr (const struct link_map *map,
-                 const Elf64_Sym *sym, Elf64_Addr ip)
+__ia64_make_fptr (struct link_map *map, const Elf64_Sym *sym, Elf64_Addr ip)
 {
   Elf64_Addr *ftab = map->l_mach.fptr_table;
   const Elf64_Sym *symtab;
index 0beb7dda5949596cf83b13d6f23296d16ff733e1..2b15420cab1fbf8fb68e6f5a2db37d4dbd143ca9 100644 (file)
@@ -1,5 +1,5 @@
 /* Configuration of lookup functions.
-   Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -26,8 +26,7 @@
 /* Forward declaration.  */
 struct link_map;
 
-extern void *_dl_symbol_address (const struct link_map *map,
-                                const Elf64_Sym *ref);
+extern void *_dl_symbol_address (struct link_map *map, const Elf64_Sym *ref);
 
 #define DL_SYMBOL_ADDRESS(map, ref) _dl_symbol_address(map, ref)
 
index 6268fb3e535ea5cf3c63d2743741330ac7d24878..be09ae81e63cb2a90b0271dc556f9c035c3c1bb5 100644 (file)
@@ -52,8 +52,8 @@ struct ia64_fdesc_table
     struct ia64_fdesc fdesc[0];
   };
 
-extern Elf64_Addr __ia64_make_fptr (const struct link_map *,
-                                   const Elf64_Sym *, Elf64_Addr);
+extern Elf64_Addr __ia64_make_fptr (struct link_map *, const Elf64_Sym *,
+                                   Elf64_Addr);
 
 static inline void
 __ia64_init_bootstrap_fdesc_table (struct link_map *map)
index 52c5a12e149667443f84bade4f304f825239febe..c1d6f7295e5118a67f37eda443833ecb1a25d3aa 100644 (file)
@@ -1,5 +1,5 @@
 /* Get the symbol address.  IA-64 version.
-   Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -21,7 +21,7 @@
 #include <dl-machine.h>
 
 void *
-_dl_symbol_address (const struct link_map *map, const Elf64_Sym *ref)
+_dl_symbol_address (struct link_map *map, const Elf64_Sym *ref)
 {
   Elf64_Addr value = (map ? map->l_addr : 0) + ref->st_value;