From f13a99db51c0ca487f4a0a41b14dc255d386c4ff Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 15 Feb 2008 03:35:53 +0000 Subject: include/ * bfdlink.h (struct bfd_link_hash_table): Delete creator field. (struct bfd_link_info): Add output_bfd. bfd/ * elflink.c: Replace all accesses to hash->creator field with output_bfd->xvec. * cofflink.c: Likewise. * coff-h8300.c: Likewise. * ecoff.c: Likewise. * elf32-m68hc1x.c: Likewise. * elf32-ppc.c: Likewise. * elf64-alpha.c: Likewise. * elf64-ppc.c: Likewise. * elf64-sparc.c: Likewise. * elfxx-mips.c: Likewise. * i386linux.c: Likewise. * m68klinux.c: Likewise. * sparclinux.c: Likewise. * sunos.c: Likewise. * xcofflink.c: Likewise. * linker.c: Likewise. (_bfd_link_hash_table_init): Don't store creator. ld/ * ldmain.h (output_bfd): Delete. * ldmain.c (output_bfd): Delete. Replace all occurrences of output_bfd with link_info.output_bfd. * ldcref.c: Likewise. * ldctor.c: Likewise. * ldemul.c: Likewise. * ldexp.c: Likewise. * ldfile.c: Likewise. * ldlang.c: Likewise. * ldmisc.c: Likewise. * ldwrite.c: Likewise. * pe-dll.c: Likewise. * emultempl/aix.em: Likewise. * emultempl/alphaelf.em: Likewise. * emultempl/armcoff.em: Likewise. * emultempl/armelf.em: Likewise. * emultempl/avrelf.em: Likewise. * emultempl/beos.em: Likewise. * emultempl/elf-generic.em: Likewise. * emultempl/elf32.em: Likewise. * emultempl/gld960.em: Likewise. * emultempl/hppaelf.em: Likewise. * emultempl/irix.em: Likewise. * emultempl/linux.em: Likewise. * emultempl/lnk960.em: Likewise. * emultempl/m68hc1xelf.em: Likewise. * emultempl/mmix-elfnmmo.em: Likewise. * emultempl/mmo.em: Likewise. * emultempl/pe.em: Likewise. * emultempl/pep.em: Likewise. * emultempl/ppc32elf.em: Likewise. * emultempl/ppc64elf.em: Likewise. * emultempl/scoreelf.em: Likewise. * emultempl/sh64elf.em: Likewise. * emultempl/spuelf.em: Likewise. * emultempl/sunos.em: Likewise. * emultempl/vanilla.em: Likewise. * emultempl/vxworks.em: Likewise. * emultempl/xtensaelf.em: Likewise. * emultempl/z80.em: Likewise. * ldlang.c (open_output): Don't return output, instead write link_info_output_bfd directly. * emultempl/alphaelf.em: Replace occurrences of link_info.hash->creator with link_info.output_bfd->xvec. * emultempl/hppaelf.em: Likewise. * emultempl/ppc32elf.em: Likewise. * emultempl/ppc64elf.em: Likewise. * emultempl/spuelf.em: Likewise. --- ld/emultempl/m68hc1xelf.em | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'ld/emultempl/m68hc1xelf.em') diff --git a/ld/emultempl/m68hc1xelf.em b/ld/emultempl/m68hc1xelf.em index d62323370a7..c54eacd5e51 100644 --- a/ld/emultempl/m68hc1xelf.em +++ b/ld/emultempl/m68hc1xelf.em @@ -1,6 +1,6 @@ # This shell script emits a C file. -*- C -*- -# Copyright 1991, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003, 2007 -# Free Software Foundation, Inc. +# Copyright 1991, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003, 2007, +# 2008 Free Software Foundation, Inc. # # This file is part of the GNU Binutils. # @@ -72,7 +72,7 @@ m68hc11_elf_${EMULATION_NAME}_before_allocation (void) if (link_info.relocatable) return; - ret = elf32_m68hc11_setup_section_lists (output_bfd, &link_info); + ret = elf32_m68hc11_setup_section_lists (link_info.output_bfd, &link_info); if (ret != 0 && no_trampoline == 0) { if (ret < 0) @@ -82,7 +82,7 @@ m68hc11_elf_${EMULATION_NAME}_before_allocation (void) } /* Call into the BFD backend to do the real work. */ - if (!elf32_m68hc11_size_stubs (output_bfd, + if (!elf32_m68hc11_size_stubs (link_info.output_bfd, stub_file->the_bfd, &link_info, &m68hc11elf_add_stub_section)) @@ -145,11 +145,11 @@ m68hc11elf_create_output_section_statements (void) stub_file = lang_add_input_file ("linker stubs", lang_input_file_is_fake_enum, NULL); - stub_file->the_bfd = bfd_create ("linker stubs", output_bfd); + stub_file->the_bfd = bfd_create ("linker stubs", link_info.output_bfd); if (stub_file->the_bfd == NULL || !bfd_set_arch_mach (stub_file->the_bfd, - bfd_get_arch (output_bfd), - bfd_get_mach (output_bfd))) + bfd_get_arch (link_info.output_bfd), + bfd_get_mach (link_info.output_bfd))) { einfo ("%X%P: can not create BFD %E\n"); return; @@ -299,14 +299,14 @@ m68hc11elf_finish (void) stubs with the correct symbol addresses. Since there could have been relaxation, the symbol addresses that were found during first call may no longer be correct. */ - if (!elf32_m68hc11_size_stubs (output_bfd, + if (!elf32_m68hc11_size_stubs (link_info.output_bfd, stub_file->the_bfd, &link_info, 0)) { einfo ("%X%P: can not size stub section: %E\n"); return; } - if (!elf32_m68hc11_build_stubs (output_bfd, &link_info)) + if (!elf32_m68hc11_build_stubs (link_info.output_bfd, &link_info)) einfo ("%X%P: can not build stubs: %E\n"); } -- cgit v1.2.1