From: Jeff Law Date: Sat, 5 Feb 1994 07:03:48 +0000 (+0000) Subject: * ldlang.h (LANG_FOR_EACH_{INPUT,OUTPUT}_SECTION): Delete (unused) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9dd7d585d66f2fb63fba12abdc59d25a889a8a9a;p=binutils-gdb.git * ldlang.h (LANG_FOR_EACH_{INPUT,OUTPUT}_SECTION): Delete (unused) GNU C specific macros. * emultempl/hppaosf.em (hppaosf_finish): Expand the only remaining call to LANG_FOR_EACH_INPUT_SECTION. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 1a7c1e7c282..3ddaa414a4a 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,11 @@ +Fri Feb 4 23:02:19 1994 Jeffrey A. Law (law@snake.cs.utah.edu) + + * ldlang.h (LANG_FOR_EACH_{INPUT,OUTPUT}_SECTION): Delete (unused) + GNU C specific macros. + + * emultempl/hppaosf.em (hppaosf_finish): Expand the only remaining + call to LANG_FOR_EACH_INPUT_SECTION. + Fri Feb 4 16:26:08 1994 David J. Mackenzie (djm@thepub.cygnus.com) * ldmisc.c (ldmalloc, xmalloc, ldrealloc, xrealloc): Functions diff --git a/ld/emultempl/hppaosf.em b/ld/emultempl/hppaosf.em index e363722ec5b..fe98f4fe6e3 100644 --- a/ld/emultempl/hppaosf.em +++ b/ld/emultempl/hppaosf.em @@ -103,41 +103,49 @@ hppaosf_finish() if (link_info.relocateable == false) { /* check for needed stubs */ - LANG_FOR_EACH_INPUT_SECTION - (statement, abfd, section, - ( - { - int new_sym_cnt = 0; - int i,j; - asymbol *syms = hppa_look_for_stubs_in_section (stub_file->the_bfd, - abfd, - output_bfd, - section, - statement->asymbols, - &new_sym_cnt, - &link_info); - - if ( (new_sym_cnt > 0) && syms ) - { - struct symbol_cache_entry **old_asymbols = stub_file->asymbols; - - stub_file->asymbols = ldmalloc((stub_file->symbol_count + new_sym_cnt) * sizeof(asymbol *)); - - for ( j = 0; j < stub_file->symbol_count; j++ ) - stub_file->asymbols[j] = old_asymbols[j]; - - for ( j = 0, i = stub_file->symbol_count; j < new_sym_cnt; j++, i++ ) - stub_file->asymbols[i] = &syms[j]; - - stub_file->symbol_count += new_sym_cnt; - /* Now, attach the contents of the new linker stub(s) */ - /* to the linker stub input section. */ + extern lang_statement_list_type file_chain; + lang_input_statement_type *statement; + + for (statement = (lang_input_statement_type *)file_chain.head; + statement != (lang_input_statement_type *)NULL; + statement = (lang_input_statement_type *)statement->next) + { + asection *section; + bfd *abfd = statement->the_bfd; + for (section = abfd->sections; + section != (asection *)NULL; + section = section ->next) + { + int new_sym_cnt = 0; + int i,j; + asymbol *syms; + + syms = hppa_look_for_stubs_in_section (stub_file->the_bfd, + abfd, + output_bfd, + section, + statement->asymbols, + &new_sym_cnt, + &link_info); + if ( (new_sym_cnt > 0) && syms ) + { + struct symbol_cache_entry **old_asymbols; + + old_asymbols = stub_file->asymbols; + + stub_file->asymbols = ldmalloc((stub_file->symbol_count + new_sym_cnt) * sizeof(asymbol *)); + + for ( j = 0; j < stub_file->symbol_count; j++ ) + stub_file->asymbols[j] = old_asymbols[j]; - } - } - ) - ) + for ( j = 0, i = stub_file->symbol_count; j < new_sym_cnt; j++, i++ ) + stub_file->asymbols[i] = &syms[j]; + + stub_file->symbol_count += new_sym_cnt; + } + } + } /* Add a statement to get the linker stubs included in the output */ lang_add_wild(".hppa_linker_stubs",NULL);