diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-01-30 00:38:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-01-30 00:38:09 +0000 |
commit | 1b4575aefaaa43adfed4658f7d66de587f12120e (patch) | |
tree | da685d9ca96236e7e2ad73b115d47c359187ac70 /elf/dl-reloc.c | |
parent | be4b5a955552a633de592a04420f4cdf8476339e (diff) | |
download | glibc-1b4575aefaaa43adfed4658f7d66de587f12120e.tar.gz glibc-1b4575aefaaa43adfed4658f7d66de587f12120e.tar.xz glibc-1b4575aefaaa43adfed4658f7d66de587f12120e.zip |
Update.
* sysdeps/ia64/dl-lookupcfg.h (DL_AUTO_FUNCTION_ADDRESS): Add cast to avoid warning (DL_STATIC_FUNCTION_ADDRESS): Likewise.
Diffstat (limited to 'elf/dl-reloc.c')
-rw-r--r-- | elf/dl-reloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c index 748aa3b8e2..bfab6a2bda 100644 --- a/elf/dl-reloc.c +++ b/elf/dl-reloc.c @@ -32,7 +32,7 @@ unsigned long int _dl_num_cache_relocations; # define bump_num_cache_relocations() ++_dl_num_cache_relocations #else -# define bump_num_cache_relocations() 0 +# define bump_num_cache_relocations() ((void) 0) #endif @@ -118,7 +118,7 @@ _dl_relocate_object (struct link_map *l, struct r_scope_elem *scope[], (ELFW(ST_BIND) ((*ref)->st_info) != STB_LOCAL \ ? ((__builtin_expect ((*ref) == l->l_lookup_cache.sym, 0) \ && elf_machine_type_class (r_type) == l->l_lookup_cache.type_class) \ - ? (bump_num_cache_relocations, \ + ? (bump_num_cache_relocations (), \ (*ref) = l->l_lookup_cache.ret, \ l->l_lookup_cache.value) \ : ({ lookup_t _lr; \ @@ -138,7 +138,7 @@ _dl_relocate_object (struct link_map *l, struct r_scope_elem *scope[], (ELFW(ST_BIND) ((*ref)->st_info) != STB_LOCAL \ ? ((__builtin_expect ((*ref) == l->l_lookup_cache.sym, 0) \ && elf_machine_type_class (r_type) == l->l_lookup_cache.type_class) \ - ? (bump_num_cache_relocations, \ + ? (bump_num_cache_relocations (), \ (*ref) = l->l_lookup_cache.ret, \ l->l_lookup_cache.value) \ : ({ lookup_t _lr; \ |