mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-10 17:41:23 +08:00
* elf32-ppc.c (ppc_elf_check_relocs): Report plt reloc against
local sym errors.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2003-06-24 Alan Modra <amodra@bigpond.net.au>
|
2003-06-24 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* elf32-ppc.c (ppc_elf_check_relocs): Report plt reloc against
|
||||||
|
local sym errors.
|
||||||
|
|
||||||
* elf32-i386.c: Convert to C90 function definitions, remove unnecessary
|
* elf32-i386.c: Convert to C90 function definitions, remove unnecessary
|
||||||
prototypes and casts. Replace PTR with void *. Formatting.
|
prototypes and casts. Replace PTR with void *. Formatting.
|
||||||
* elf32-ppc.c: Likewise. Break long strings too.
|
* elf32-ppc.c: Likewise. Break long strings too.
|
||||||
|
@ -3269,6 +3269,12 @@ ppc_elf_check_relocs (bfd *abfd,
|
|||||||
{
|
{
|
||||||
/* It does not make sense to have a procedure linkage
|
/* It does not make sense to have a procedure linkage
|
||||||
table entry for a local symbol. */
|
table entry for a local symbol. */
|
||||||
|
(*_bfd_error_handler) (_("%s(%s+0x%lx): %s reloc against "
|
||||||
|
"local symbol"),
|
||||||
|
bfd_archive_filename (abfd),
|
||||||
|
sec->name,
|
||||||
|
(long) rel->r_offset,
|
||||||
|
ppc_elf_howto_table[r_type]->name);
|
||||||
bfd_set_error (bfd_error_bad_value);
|
bfd_set_error (bfd_error_bad_value);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user