* ldlang.h (LANG_FOR_EACH_{INPUT,OUTPUT}_SECTION): Delete (unused)
authorJeff Law <law@redhat.com>
Sat, 5 Feb 1994 07:03:48 +0000 (07:03 +0000)
committerJeff Law <law@redhat.com>
Sat, 5 Feb 1994 07:03:48 +0000 (07:03 +0000)
        GNU C specific macros.

        * emultempl/hppaosf.em (hppaosf_finish): Expand the only remaining
        call to LANG_FOR_EACH_INPUT_SECTION.

ld/ChangeLog
ld/emultempl/hppaosf.em

index 1a7c1e7c282c5525835281ae92aa27b3c325822e..3ddaa414a4a3fa22e58f64d461799669e3e45fc6 100644 (file)
@@ -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
index e363722ec5b5efc84de3def8e0c608234b2eee44..fe98f4fe6e3dccc0471f924264dbd48a5d0ff597 100644 (file)
@@ -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);