Franz Sirl <Franz.Sirl-kernel@lauterbach.com>

* elf32-ppc.c (ppc_elf_relocate_section): Don't barf on out of
        range undefweak symbols.
        * hash.c: Add missing comma after @xref{}
        * linker.c: Likewise.
This commit is contained in:
Richard Henderson 1999-06-04 13:25:23 +00:00
parent 79e5982fed
commit dc1bc0c9a5
4 changed files with 48 additions and 36 deletions

View File

@ -1,3 +1,10 @@
1999-06-04 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* elf32-ppc.c (ppc_elf_relocate_section): Don't barf on out of
range undefweak symbols.
* hash.c: Add missing comma after @xref{}
* linker.c: Likewise.
1999-06-04 Nick Clifton <nickc@cygnus.com>
* elfxx-target.h (ELF_MAXPAGESIZE): Produce an error message

View File

@ -3751,46 +3751,51 @@ ppc_elf_relocate_section (output_bfd, info, input_bfd, input_section,
relocation,
addend);
if (r != bfd_reloc_ok)
if (r == bfd_reloc_ok)
;
else if (r == bfd_reloc_overflow)
{
ret = false;
switch (r)
const char *name;
if (h != NULL)
{
default:
break;
if (h->root.type == bfd_link_hash_undefweak
&& howto->pc_relative)
{
/* Assume this is a call protected by other code that
detect the symbol is undefined. If this is the case,
we can safely ignore the overflow. If not, the
program is hosed anyway, and a little warning isn't
going to help. */
case bfd_reloc_overflow:
{
const char *name;
if (h != NULL)
name = h->root.root.string;
else
{
name = bfd_elf_string_from_elf_section (input_bfd,
symtab_hdr->sh_link,
sym->st_name);
if (name == NULL)
break;
if (*name == '\0')
name = bfd_section_name (input_bfd, sec);
}
(*info->callbacks->reloc_overflow)(info,
name,
howto->name,
(bfd_vma) 0,
input_bfd,
input_section,
offset);
}
break;
continue;
}
name = h->root.root.string;
}
else
{
name = bfd_elf_string_from_elf_section (input_bfd,
symtab_hdr->sh_link,
sym->st_name);
if (name == NULL)
continue;
if (*name == '\0')
name = bfd_section_name (input_bfd, sec);
}
}
}
(*info->callbacks->reloc_overflow)(info,
name,
howto->name,
(bfd_vma) 0,
input_bfd,
input_section,
offset);
ret = false;
}
else
ret = false;
}
#ifdef DEBUG
fprintf (stderr, "\n");

View File

@ -73,7 +73,7 @@ SUBSECTION
The function <<bfd_hash_table_init>> take as an argument a
function to use to create new entries. For a basic hash
table, use the function <<bfd_hash_newfunc>>. @xref{Deriving
a New Hash Table Type} for why you would want to use a
a New Hash Table Type}, for why you would want to use a
different value for this argument.
@findex bfd_hash_allocate

View File

@ -74,7 +74,7 @@ SUBSECTION
@cindex target vector (_bfd_link_hash_table_create)
The linker routines must create a hash table, which must be
derived from <<struct bfd_link_hash_table>> described in
<<bfdlink.c>>. @xref{Hash Tables} for information on how to
<<bfdlink.c>>. @xref{Hash Tables}, for information on how to
create a derived hash table. This entry point is called using
the target vector of the linker output file.