Lines Matching refs:newsect
1208 NAME (aout, new_section_hook) (bfd *abfd, asection *newsect) in NAME()
1211 newsect->alignment_power = bfd_get_arch_info (abfd)->section_align_power; in NAME()
1215 if (obj_textsec (abfd) == NULL && !strcmp (newsect->name, ".text")) in NAME()
1217 obj_textsec (abfd)= newsect; in NAME()
1218 newsect->target_index = N_TEXT; in NAME()
1220 else if (obj_datasec (abfd) == NULL && !strcmp (newsect->name, ".data")) in NAME()
1222 obj_datasec (abfd) = newsect; in NAME()
1223 newsect->target_index = N_DATA; in NAME()
1225 else if (obj_bsssec (abfd) == NULL && !strcmp (newsect->name, ".bss")) in NAME()
1227 obj_bsssec (abfd) = newsect; in NAME()
1228 newsect->target_index = N_BSS; in NAME()
1233 return _bfd_generic_new_section_hook (abfd, newsect); in NAME()