mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 04:49:54 +08:00
PR 425
* syms.c (_bfd_stab_section_find_nearest_line): Ignore R_*_NONE relocs.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2004-10-05 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
PR 425
|
||||||
|
* syms.c (_bfd_stab_section_find_nearest_line): Ignore R_*_NONE relocs.
|
||||||
|
|
||||||
2004-10-01 Paul Brook <paul@codesourcery.com>
|
2004-10-01 Paul Brook <paul@codesourcery.com>
|
||||||
|
|
||||||
* elf32-arm.h (elf32_arm_fake_sections,
|
* elf32-arm.h (elf32_arm_fake_sections,
|
||||||
|
@ -1016,6 +1016,10 @@ _bfd_stab_section_find_nearest_line (bfd *abfd,
|
|||||||
asymbol *sym;
|
asymbol *sym;
|
||||||
|
|
||||||
r = *pr;
|
r = *pr;
|
||||||
|
/* Ignore R_*_NONE relocs. */
|
||||||
|
if (r->howto->dst_mask == 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
if (r->howto->rightshift != 0
|
if (r->howto->rightshift != 0
|
||||||
|| r->howto->size != 2
|
|| r->howto->size != 2
|
||||||
|| r->howto->bitsize != 32
|
|| r->howto->bitsize != 32
|
||||||
|
Reference in New Issue
Block a user