mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
* som.c (som_write_fixups): Always emit at least
one relocation for any non-bss section.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Tue Apr 12 13:36:20 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
|
||||||
|
|
||||||
|
* som.c (som_write_fixups): Always emit at least
|
||||||
|
one relocation for any non-bss section.
|
||||||
|
|
||||||
Mon Apr 11 14:41:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
Mon Apr 11 14:41:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||||
|
|
||||||
* elfcode.h (assign_file_positions_except_relocs): Don't require
|
* elfcode.h (assign_file_positions_except_relocs): Don't require
|
||||||
|
@ -2339,9 +2339,9 @@ som_write_fixups (abfd, current_offset, total_reloc_sizep)
|
|||||||
|| !som_is_container (section, subsection))
|
|| !som_is_container (section, subsection))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* If this subspace had no relocations, then we're finished
|
/* If this subspace does not have real data, then we are
|
||||||
with it. */
|
finised with it. */
|
||||||
if (subsection->reloc_count <= 0)
|
if ((subsection->flags & (SEC_LOAD | SEC_DEBUGGING)) == 0)
|
||||||
{
|
{
|
||||||
som_section_data (subsection)->subspace_dict->fixup_request_index
|
som_section_data (subsection)->subspace_dict->fixup_request_index
|
||||||
= -1;
|
= -1;
|
||||||
|
Reference in New Issue
Block a user