Remove patch accidentally checked in with readelf.c patch
authorNick Clifton <nickc@redhat.com>
Fri, 6 Jul 2001 08:01:17 +0000 (08:01 +0000)
committerNick Clifton <nickc@redhat.com>
Fri, 6 Jul 2001 08:01:17 +0000 (08:01 +0000)
binutils/objcopy.c

index f412d3878521c7a857c87e6e1074001678472fa0..b38d1e589d514a0e025935c1cfc97b4ab77273fc 100644 (file)
@@ -1777,22 +1777,14 @@ mark_symbols_used_in_relocations (ibfd, isection, symbolsarg)
   if (relcount < 0)
     bfd_fatal (bfd_get_filename (ibfd));
 
-  /* Examine each symbol used in a relocation.  */
+  /* Examine each symbol used in a relocation.  If it's not one of the
+     special bfd section symbols, then mark it with BSF_KEEP.  */
   for (i = 0; i < relcount; i++)
     {
-      asymbol * sym = * relpp[i]->sym_ptr_ptr;
-      
-      /* If the symbol's output section does not exist (because it
-        has been removed with -R) then do not keep the symbol.  */
-      if (bfd_get_output_section (sym) == NULL)
-       continue;
-      
-      /* If the symbols is not one of the special bfd
-        section symbols, then mark it with BSF_KEEP.  */
-      if (sym != bfd_com_section_ptr->symbol
-         && sym != bfd_abs_section_ptr->symbol
-         && sym != bfd_und_section_ptr->symbol)
-       sym->flags |= BSF_KEEP;
+      if (*relpp[i]->sym_ptr_ptr != bfd_com_section_ptr->symbol
+         && *relpp[i]->sym_ptr_ptr != bfd_abs_section_ptr->symbol
+         && *relpp[i]->sym_ptr_ptr != bfd_und_section_ptr->symbol)
+       (*relpp[i]->sym_ptr_ptr)->flags |= BSF_KEEP;
     }
 
   if (relpp != NULL)
This page took 0.026127 seconds and 4 git commands to generate.