aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1999-09-14 02:03:58 +0000
committerJeff Law <law@redhat.com>1999-09-14 02:03:58 +0000
commitb2e311df3280702da5c052ff5ce33d6d27090161 (patch)
tree90d1dd5cb856ace8c30e2d94eb89d74df127953e /bfd
parente5db213db23d45650b7769226b1c27f07a36d6d5 (diff)
downloadfsf-binutils-gdb-b2e311df3280702da5c052ff5ce33d6d27090161.zip
fsf-binutils-gdb-b2e311df3280702da5c052ff5ce33d6d27090161.tar.gz
fsf-binutils-gdb-b2e311df3280702da5c052ff5ce33d6d27090161.tar.bz2
* elf-hppa.h (elf_hppa_final_link): Remove unused variables.
(elf_hppa_final_link_relocate): Likewise. (elf_hppa_relocate_insn): Likewise. (elf_hppa_relocate_section): Initialize HOWTO.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog7
-rw-r--r--bfd/elf-hppa.h12
2 files changed, 8 insertions, 11 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 95657f6..597bd5d 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,10 @@
+Mon Sep 13 20:01:47 1999 Jeffrey A Law (law@cygnus.com)
+
+ * elf-hppa.h (elf_hppa_final_link): Remove unused variables.
+ (elf_hppa_final_link_relocate): Likewise.
+ (elf_hppa_relocate_insn): Likewise.
+ (elf_hppa_relocate_section): Initialize HOWTO.
+
1999-09-13 Donn Terry <donn@interix.com>
* coffcode.h (styp_to_sec_flags): Further refinement of COMDAT
diff --git a/bfd/elf-hppa.h b/bfd/elf-hppa.h
index f629bbc..65c0091 100644
--- a/bfd/elf-hppa.h
+++ b/bfd/elf-hppa.h
@@ -826,7 +826,6 @@ elf_hppa_final_link (abfd, info)
/* Make sure we've got ourselves a suitable __gp value. */
if (!info->relocateable)
{
- bfd_vma min_short_vma = (bfd_vma) -1, max_short_vma = 0;
struct elf_link_hash_entry *gp;
bfd_vma gp_val = 0;
asection *os;
@@ -835,8 +834,6 @@ elf_hppa_final_link (abfd, info)
the start of .PARISC.global section. */
for (os = abfd->sections; os ; os = os->next)
{
- bfd_vma lo, hi;
-
/* This would be cleaner if we marked sections with an attribute
indicating they are short sections. */
if (strcmp (os->name, ".PARISC.global") == 0)
@@ -904,7 +901,7 @@ elf_hppa_relocate_section (output_bfd, info, input_bfd, input_section,
for (; rel < relend; rel++)
{
int r_type;
- reloc_howto_type *howto;
+ reloc_howto_type *howto = elf_hppa_howto_table + ELF_R_TYPE (rel->r_info);
unsigned long r_symndx;
struct elf_link_hash_entry *h;
Elf_Internal_Sym *sym;
@@ -1094,7 +1091,6 @@ elf_hppa_final_link_relocate (rel, input_bfd, output_bfd,
bfd_vma addend = rel->r_addend;
reloc_howto_type *howto = elf_hppa_howto_table + ELF_R_TYPE (rel->r_info);
unsigned long r_type = howto->type;
- unsigned long r_format = howto->bitsize;
unsigned long r_field = e_fsel;
bfd_byte *hit_data = contents + offset;
struct elf64_hppa_link_hash_table *hppa_info = elf64_hppa_hash_table (info);
@@ -1562,8 +1558,6 @@ elf_hppa_relocate_insn (insn, sym_value, r_type)
long sym_value;
unsigned long r_type;
{
- long constant_value;
-
switch (r_type)
{
/* This is any 22bit branch. In PA2.0 syntax it corresponds to
@@ -1689,8 +1683,6 @@ elf_hppa_relocate_insn (insn, sym_value, r_type)
case R_PARISC_DIR16DF:
case R_PARISC_LTOFF16DF:
{
- int w;
-
/* Mask off bits in INSN we do not want. */
insn &= 0xffffc00e;
@@ -1724,8 +1716,6 @@ elf_hppa_relocate_insn (insn, sym_value, r_type)
case R_PARISC_DIR14WR:
case R_PARISC_LTOFF16WF:
{
- int w;
-
/* Mask off bits in INSN we do not want. */
insn &= 0xffffc006;