forked from Imagelibrary/binutils-gdb
* elf-bfd.h (bfd_elf_discard_group): Remove.
* elf.c (bfd_elf_discard_group): Likewise. * elfxx-target.h (bfd_elfNN_bfd_discard_group): Remove macro.
This commit is contained in:
23
bfd/elf.c
23
bfd/elf.c
@@ -664,29 +664,6 @@ bfd_elf_is_group_section (bfd *abfd ATTRIBUTE_UNUSED, const asection *sec)
|
||||
return elf_next_in_group (sec) != NULL;
|
||||
}
|
||||
|
||||
bfd_boolean
|
||||
bfd_elf_discard_group (bfd *abfd ATTRIBUTE_UNUSED,
|
||||
asection *group ATTRIBUTE_UNUSED)
|
||||
{
|
||||
#if 0
|
||||
asection *first = elf_next_in_group (group);
|
||||
asection *s = first;
|
||||
|
||||
while (s != NULL)
|
||||
{
|
||||
s->output_section = bfd_abs_section_ptr;
|
||||
s = elf_next_in_group (s);
|
||||
/* These lists are circular. */
|
||||
if (s == first)
|
||||
break;
|
||||
}
|
||||
#else
|
||||
/* FIXME: Never used. Remove it! */
|
||||
abort ();
|
||||
#endif
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* Make a BFD section from an ELF section. We store a pointer to the
|
||||
BFD section in the bfd_section field of the header. */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user