diff options
author | Andreas Jaeger <aj@suse.de> | 2000-05-08 15:40:26 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-05-08 15:40:26 +0000 |
commit | 21dd216cd4ee9400ac9c286ff5758bc595dd41b7 (patch) | |
tree | 3d9597c87f379f02fb195b2bc349a45f9c891bd2 /sysdeps | |
parent | bb0607a2aaa43dd9a8e081eec48be923323cef25 (diff) | |
download | glibc-21dd216cd4ee9400ac9c286ff5758bc595dd41b7.tar glibc-21dd216cd4ee9400ac9c286ff5758bc595dd41b7.tar.gz glibc-21dd216cd4ee9400ac9c286ff5758bc595dd41b7.tar.bz2 glibc-21dd216cd4ee9400ac9c286ff5758bc595dd41b7.zip |
2000-05-08 Jakub Jelinek <jakub@redhat.com>
* sysdeps/alpha/dl-machine.h (elf_machine_rela): Fix arguments in
call to elf_machine_fixup_plt.
* sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
* sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/alpha/dl-machine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/alpha/dl-machine.h b/sysdeps/alpha/dl-machine.h index 814e3552f1..e20493b33f 100644 --- a/sysdeps/alpha/dl-machine.h +++ b/sysdeps/alpha/dl-machine.h @@ -252,7 +252,7 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile) .end " #tramp_name) #ifndef PROF -#define ELF_MACHINE_RUNTIME_TRAMPOLINE \ +#define ELF_MACHINE_RUNTIME_TRAMPOLINE \ TRAMPOLINE_TEMPLATE (_dl_runtime_resolve, fixup, imb); \ TRAMPOLINE_TEMPLATE (_dl_runtime_profile, profile_fixup, /* nop */); #else @@ -497,7 +497,7 @@ elf_machine_rela (struct link_map *map, if (r_type == R_ALPHA_GLOB_DAT) *reloc_addr = sym_value; else if (r_type == R_ALPHA_JMP_SLOT) - elf_machine_fixup_plt (map, reloc, reloc_addr, sym_value); + elf_machine_fixup_plt (map, NULL, reloc, reloc_addr, sym_value); else if (r_type == R_ALPHA_REFQUAD) { sym_value += *reloc_addr; |