forked from Imagelibrary/binutils-gdb
bfd/
* elf-bfd.h (struct elf_obj_tdata): Rename segment_map to seg_map. Delete num_locals and num_globals. (elf_num_locals, elf_num_globals): Don't define. (elf_seg_map, elf_next_file_pos, elf_eh_frame_hdr, elf_linker, elf_stack_flags, elf_strtab_sec, elf_shstrtab_sec): Define. * bfd.c, * elf-eh-frame.c, * elf-nacl.c, * elf-vxworks.c, * elf.c, * elf32-arm.c, * elf32-lm32.c, * elf32-ppc.c, * elf32-rx.c, * elf32-spu.c, * elf64-hppa.c, * elfcode.h, * elflink.c, * elfnn-ia64.c, * elfxx-mips.c: Use newly defined elf_obj_tdata accessor macros. * elf.c (elf_map_symbols): Add pnum_locals param. Return number of locals syms via new param. (swap_out_syms): Adjust to suit elf_map_symbols change. ld/ * emultempl/elf-generic.em: Use newly defined elf_obj_tdata accessor macros.
This commit is contained in:
@@ -775,8 +775,7 @@ _lm32fdpic_osec_to_segment (bfd *output_bfd, asection *osec)
|
||||
Elf_Internal_Phdr *p;
|
||||
|
||||
/* Find the segment that contains the output_section. */
|
||||
for (m = elf_tdata (output_bfd)->segment_map,
|
||||
p = elf_tdata (output_bfd)->phdr;
|
||||
for (m = elf_seg_map (output_bfd), p = elf_tdata (output_bfd)->phdr;
|
||||
m != NULL;
|
||||
m = m->next, p++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user