summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2011-06-13 15:57:17 +0000
committerNick Clifton <nickc@redhat.com>2011-06-13 15:57:17 +0000
commit4dabeca1211fbb38bb9d7b906cae98378eee4102 (patch)
tree4fa4464668cb056180058a3d5a1af5a16834fee3
parent32a8341f6076eaf0358783a1592963d7ad95b70e (diff)
downloadbinutils-redhat-4dabeca1211fbb38bb9d7b906cae98378eee4102.tar.gz
* elf32-tilepro.c (tilepro_elf_check_relocs): Delete unused local
variable 'local_got_offsets'. * elfxx-tilegx.c (tilegx_elf_check_relocs): Likewise. (tilegx_finish_dyn): Delete unused local variable 'abi_64_p'.
-rw-r--r--bfd/ChangeLog7
-rw-r--r--bfd/elf32-tilepro.c2
-rw-r--r--bfd/elfxx-tilegx.c4
3 files changed, 7 insertions, 6 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 69a881ceff..90cdbb4859 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,10 @@
+2011-06-13 Nick Clifton <nickc@redhat.com>
+
+ * elf32-tilepro.c (tilepro_elf_check_relocs): Delete unused local
+ variable 'local_got_offsets'.
+ * elfxx-tilegx.c (tilegx_elf_check_relocs): Likewise.
+ (tilegx_finish_dyn): Delete unused local variable 'abi_64_p'.
+
2011-06-13 Walter Lee <walt@tilera.com>
* Makefile.am (ALL_MACHINES): Add cpu-tilegx.lo and cpu-tilepro.lo.
diff --git a/bfd/elf32-tilepro.c b/bfd/elf32-tilepro.c
index 8a2e6d58bc..154db7596e 100644
--- a/bfd/elf32-tilepro.c
+++ b/bfd/elf32-tilepro.c
@@ -1299,7 +1299,6 @@ tilepro_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
struct tilepro_elf_link_hash_table *htab;
Elf_Internal_Shdr *symtab_hdr;
struct elf_link_hash_entry **sym_hashes;
- bfd_vma *local_got_offsets;
const Elf_Internal_Rela *rel;
const Elf_Internal_Rela *rel_end;
asection *sreloc;
@@ -1311,7 +1310,6 @@ tilepro_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
htab = tilepro_elf_hash_table (info);
symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
sym_hashes = elf_sym_hashes (abfd);
- local_got_offsets = elf_local_got_offsets (abfd);
sreloc = NULL;
diff --git a/bfd/elfxx-tilegx.c b/bfd/elfxx-tilegx.c
index a712d3a682..3ec2d3fa0c 100644
--- a/bfd/elfxx-tilegx.c
+++ b/bfd/elfxx-tilegx.c
@@ -1549,7 +1549,6 @@ tilegx_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
struct tilegx_elf_link_hash_table *htab;
Elf_Internal_Shdr *symtab_hdr;
struct elf_link_hash_entry **sym_hashes;
- bfd_vma *local_got_offsets;
const Elf_Internal_Rela *rel;
const Elf_Internal_Rela *rel_end;
asection *sreloc;
@@ -1561,7 +1560,6 @@ tilegx_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
htab = tilegx_elf_hash_table (info);
symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
sym_hashes = elf_sym_hashes (abfd);
- local_got_offsets = elf_local_got_offsets (abfd);
sreloc = NULL;
@@ -3767,14 +3765,12 @@ tilegx_finish_dyn (bfd *output_bfd, struct bfd_link_info *info,
const struct elf_backend_data *bed;
bfd_byte *dyncon, *dynconend;
size_t dynsize;
- bfd_boolean abi_64_p;
htab = tilegx_elf_hash_table (info);
BFD_ASSERT (htab != NULL);
bed = get_elf_backend_data (output_bfd);
dynsize = bed->s->sizeof_dyn;
dynconend = sdyn->contents + sdyn->size;
- abi_64_p = ABI_64_P (output_bfd);
for (dyncon = sdyn->contents; dyncon < dynconend; dyncon += dynsize)
{