From: Alan Modra Date: Fri, 25 Jan 2002 12:12:23 +0000 (+0000) Subject: * coff-alpha.c (alpha_relocate_section): Unify warning message X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cc9ff76a522c9e798c72ec034ab0779b9e941fc0;p=binutils-gdb.git * coff-alpha.c (alpha_relocate_section): Unify warning message for GP relative relocations without GP defined. * coff-mips.c (mips_relocate_section): Likewise. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index e30f06a93cf..0d75e0e1d71 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2002-01-25 Philipp Thomas + + * coff-alpha.c (alpha_relocate_section): Unify warning message + for GP relative relocations without GP defined. + * coff-mips.c (mips_relocate_section): Likewise. + 2002-01-25 Alan Modra * elf-eh-frame.c (_bfd_elf_eh_frame_section_offset): Avoid diff --git a/bfd/coff-alpha.c b/bfd/coff-alpha.c index 49bf0178578..4056e2ce6e7 100644 --- a/bfd/coff-alpha.c +++ b/bfd/coff-alpha.c @@ -1986,7 +1986,7 @@ alpha_relocate_section (output_bfd, info, input_bfd, input_section, if (gp_usedp && gp_undefined) { if (! ((*info->callbacks->reloc_dangerous) - (info, _("GP relative relocation when GP not defined"), + (info, _("GP relative relocation used when GP not defined"), input_bfd, input_section, r_vaddr - input_section->vma))) return false; /* Only give the error once per link. */ diff --git a/bfd/coff-mips.c b/bfd/coff-mips.c index a6950d1114b..672b07f7762 100644 --- a/bfd/coff-mips.c +++ b/bfd/coff-mips.c @@ -1430,7 +1430,7 @@ mips_relocate_section (output_bfd, info, input_bfd, input_section, if (gp_undefined) { if (! ((*info->callbacks->reloc_dangerous) - (info, _("GP relative relocation when GP not defined"), + (info, _("GP relative relocation used when GP not defined"), input_bfd, input_section, int_rel.r_vaddr - input_section->vma))) return false;