Home | History | Annotate | Download | only in bfd

Lines Matching refs:newsect

1107 NAME (aout, new_section_hook) (bfd *abfd, asection *newsect)
1110 newsect->alignment_power = bfd_get_arch_info(abfd)->section_align_power;
1115 && !strcmp (newsect->name, ".text"))
1117 obj_textsec(abfd)= newsect;
1118 newsect->target_index = N_TEXT;
1121 && !strcmp (newsect->name, ".data"))
1123 obj_datasec (abfd) = newsect;
1124 newsect->target_index = N_DATA;
1127 && !strcmp (newsect->name, ".bss"))
1129 obj_bsssec (abfd) = newsect;
1130 newsect->target_index = N_BSS;
1135 return _bfd_generic_new_section_hook (abfd, newsect);