summaryrefslogtreecommitdiff
path: root/bfd/elf32-mips.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2002-01-31 11:17:22 +0000
committerNick Clifton <nickc@redhat.com>2002-01-31 11:17:22 +0000
commitb27355e007d5bbfe3f3b5aae541f0022230759fa (patch)
treeb170db65701cb816e4d2cb7049235541bf696d83 /bfd/elf32-mips.c
parent8cf1a37185062ff6bcc37a481e2076ac46ce59b5 (diff)
downloadgdb-b27355e007d5bbfe3f3b5aae541f0022230759fa.tar.gz
Replace 'return false' with a return of a bfd_reloc_ error code.
Diffstat (limited to 'bfd/elf32-mips.c')
-rw-r--r--bfd/elf32-mips.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c
index 162ff412de7..a84112ef8dd 100644
--- a/bfd/elf32-mips.c
+++ b/bfd/elf32-mips.c
@@ -6788,7 +6788,7 @@ mips_elf_calculate_relocation (abfd,
{
g = mips_elf_local_got_index (abfd, info, symbol + addend);
if (g == (bfd_vma) -1)
- return false;
+ return bfd_reloc_outofrange;
}
/* Convert GOT indices to actual offsets. */
@@ -6848,7 +6848,7 @@ mips_elf_calculate_relocation (abfd,
symbol,
&value,
input_section))
- return false;
+ return bfd_reloc_undefined;
}
else
{
@@ -6969,7 +6969,7 @@ mips_elf_calculate_relocation (abfd,
local_sections, false);
value = mips_elf_got16_entry (abfd, info, symbol + addend, forced);
if (value == (bfd_vma) -1)
- return false;
+ return bfd_reloc_outofrange;
value
= mips_elf_got_offset_from_index (elf_hash_table (info)->dynobj,
abfd,
@@ -7013,7 +7013,7 @@ mips_elf_calculate_relocation (abfd,
case R_MIPS_GOT_PAGE:
value = mips_elf_got_page (abfd, info, symbol + addend, NULL);
if (value == (bfd_vma) -1)
- return false;
+ return bfd_reloc_outofrange;
value = mips_elf_got_offset_from_index (elf_hash_table (info)->dynobj,
abfd,
value);