* solib-som.c (som_relocate_section_addresses): Stop saving

the $CODE$ section in the so_list structure.
This commit is contained in:
Joel Brobecker 2007-08-09 16:45:32 +00:00
parent 4396b6862a
commit 4fec86cf74
2 changed files with 5 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2007-08-09 Joel Brobecker <brobecker@adacore.com>
* solib-som.c (som_relocate_section_addresses): Stop saving
the $CODE$ section in the so_list structure.
2007-08-08 Maxim Grigoriev <maxim2405@gmail.com>
* xtensa-tdep.h (XTENSA_MAX_COPROCESSOR): New.

View File

@ -113,13 +113,6 @@ som_relocate_section_addresses (struct so_list *so,
{
flagword aflag = bfd_get_section_flags(so->abfd, sec->the_bfd_section);
/* solib.c does something similar, but it only recognizes ".text", SOM calls
the text section "$CODE$". */
if (strcmp (sec->the_bfd_section->name, "$CODE$") == 0)
{
so->textsection = sec;
}
if (aflag & SEC_CODE)
{
sec->addr += so->lm_info->text_addr - so->lm_info->text_link_addr;