36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
|
commit 4b5b8a1cdf39bed02b8b973717796eccde455ed6
|
||
|
Author: Fangrui Song <maskray@google.com>
|
||
|
Date: Mon Sep 27 10:12:50 2021 -0700
|
||
|
|
||
|
powerpc: Delete unneeded ELF_MACHINE_BEFORE_RTLD_RELOC
|
||
|
|
||
|
Reviewed-by: Raphael M Zinsly <rzinsly@linux.ibm.com>
|
||
|
(cherry picked from commit 8e2557a2b85b2eb0ed50a9016a4ffc6b859b97e6)
|
||
|
|
||
|
diff --git a/sysdeps/powerpc/powerpc32/dl-machine.h b/sysdeps/powerpc/powerpc32/dl-machine.h
|
||
|
index ced3a7b659cfcff1..b93cf486b6cda5fd 100644
|
||
|
--- a/sysdeps/powerpc/powerpc32/dl-machine.h
|
||
|
+++ b/sysdeps/powerpc/powerpc32/dl-machine.h
|
||
|
@@ -109,8 +109,6 @@ elf_machine_load_address (void)
|
||
|
return runtime_dynamic - elf_machine_dynamic ();
|
||
|
}
|
||
|
|
||
|
-#define ELF_MACHINE_BEFORE_RTLD_RELOC(dynamic_info) /* nothing */
|
||
|
-
|
||
|
/* The PLT uses Elf32_Rela relocs. */
|
||
|
#define elf_machine_relplt elf_machine_rela
|
||
|
|
||
|
diff --git a/sysdeps/powerpc/powerpc64/dl-machine.h b/sysdeps/powerpc/powerpc64/dl-machine.h
|
||
|
index b90f407119efd431..b3f3352bcf5a52b0 100644
|
||
|
--- a/sysdeps/powerpc/powerpc64/dl-machine.h
|
||
|
+++ b/sysdeps/powerpc/powerpc64/dl-machine.h
|
||
|
@@ -116,8 +116,6 @@ elf_machine_dynamic (void)
|
||
|
return runtime_dynamic - elf_machine_load_address() ;
|
||
|
}
|
||
|
|
||
|
-#define ELF_MACHINE_BEFORE_RTLD_RELOC(dynamic_info) /* nothing */
|
||
|
-
|
||
|
/* The PLT uses Elf64_Rela relocs. */
|
||
|
#define elf_machine_relplt elf_machine_rela
|
||
|
|