Home | History | Annotate | Download | only in bfd

Lines Matching refs:reloc_sec

15590   asection *reloc_sec = elf_section_data (sec)->sreloc;
15592 if (reloc_sec == NULL)
15598 reloc_sec = bfd_get_linker_section (abfd, name);
15600 if (reloc_sec != NULL)
15601 elf_section_data (sec)->sreloc = reloc_sec;
15605 return reloc_sec;
15625 asection * reloc_sec = elf_section_data (sec)->sreloc;
15627 if (reloc_sec == NULL)
15634 reloc_sec = bfd_get_linker_section (dynobj, name);
15636 if (reloc_sec == NULL)
15643 reloc_sec = bfd_make_section_anyway_with_flags (dynobj, name, flags);
15644 if (reloc_sec != NULL)
15650 elf_section_type (reloc_sec) = is_rela ? SHT_RELA : SHT_REL;
15651 if (!bfd_set_section_alignment (reloc_sec, alignment))
15652 reloc_sec = NULL;
15656 elf_section_data (sec)->sreloc = reloc_sec;
15659 return reloc_sec;