aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorAndreas Krebbel <krebbel@linux.vnet.ibm.com>2015-10-19 13:08:27 +0200
committerAndreas Krebbel <krebbel@linux.vnet.ibm.com>2015-10-22 09:59:40 +0200
commit61643fbadb17932965e5c02db75ec3f8e211d7b1 (patch)
tree594986853e455bcc0c1eb4598a64254da19c1ca7 /bfd
parent8b89121d4444e5c23295c63835da538b11d4cb49 (diff)
downloadgdb-61643fbadb17932965e5c02db75ec3f8e211d7b1.zip
gdb-61643fbadb17932965e5c02db75ec3f8e211d7b1.tar.gz
gdb-61643fbadb17932965e5c02db75ec3f8e211d7b1.tar.bz2
S/390: Get rid of superfluous parameter to s390_elf_allocate_ifunc_dyn_relocs.
bfd/ChangeLog: * elf-s390-common.c (s390_elf_allocate_ifunc_dyn_relocs): Remove `head' parameter. * elf32-s390.c (allocate_dynrelocs): Don't use last parameter. * elf64-s390.c (allocate_dynrelocs): Don't use last parameter.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog7
-rw-r--r--bfd/elf-s390-common.c4
-rw-r--r--bfd/elf32-s390.c3
-rw-r--r--bfd/elf64-s390.c3
4 files changed, 11 insertions, 6 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 862664a..6eec665 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,10 @@
+2015-10-22 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
+
+ * elf-s390-common.c (s390_elf_allocate_ifunc_dyn_relocs): Remove
+ `head' parameter.
+ * elf32-s390.c (allocate_dynrelocs): Don't use last parameter.
+ * elf64-s390.c (allocate_dynrelocs): Don't use last parameter.
+
2015-10-20 Hans-Peter Nilsson <hp@bitrange.com>
* mmo.c (mmo_write_symbols_and_terminator): Correct printed value
diff --git a/bfd/elf-s390-common.c b/bfd/elf-s390-common.c
index 6b5b17b..2daeef6 100644
--- a/bfd/elf-s390-common.c
+++ b/bfd/elf-s390-common.c
@@ -87,12 +87,12 @@ s390_elf_create_ifunc_sections (bfd *abfd, struct bfd_link_info *info)
static bfd_boolean
s390_elf_allocate_ifunc_dyn_relocs (struct bfd_link_info *info,
- struct elf_link_hash_entry *h,
- struct elf_dyn_relocs **head)
+ struct elf_link_hash_entry *h)
{
struct elf_dyn_relocs *p;
struct elf_link_hash_table *htab;
struct elf_s390_link_hash_entry *eh = (struct elf_s390_link_hash_entry*)h;
+ struct elf_dyn_relocs **head = &eh->dyn_relocs;
htab = elf_hash_table (info);
eh->ifunc_resolver_address = h->root.u.def.value;
diff --git a/bfd/elf32-s390.c b/bfd/elf32-s390.c
index dc2d80f..509d8f9 100644
--- a/bfd/elf32-s390.c
+++ b/bfd/elf32-s390.c
@@ -1787,8 +1787,7 @@ allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
/* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
here if it is defined and referenced in a non-shared object. */
if (s390_is_ifunc_symbol_p (h) && h->def_regular)
- return s390_elf_allocate_ifunc_dyn_relocs (info, h,
- &eh->dyn_relocs);
+ return s390_elf_allocate_ifunc_dyn_relocs (info, h);
else if (htab->elf.dynamic_sections_created
&& h->plt.refcount > 0)
{
diff --git a/bfd/elf64-s390.c b/bfd/elf64-s390.c
index 7cc0489..d988b12 100644
--- a/bfd/elf64-s390.c
+++ b/bfd/elf64-s390.c
@@ -1734,8 +1734,7 @@ allocate_dynrelocs (struct elf_link_hash_entry *h,
/* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
here if it is defined and referenced in a non-shared object. */
if (s390_is_ifunc_symbol_p (h) && h->def_regular)
- return s390_elf_allocate_ifunc_dyn_relocs (info, h,
- &eh->dyn_relocs);
+ return s390_elf_allocate_ifunc_dyn_relocs (info, h);
else if (htab->elf.dynamic_sections_created
&& h->plt.refcount > 0)
{