From: Nick Clifton Date: Fri, 6 Jul 2001 08:05:27 +0000 (+0000) Subject: And remove the seconf accidental patch commission. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=eed1d0acc7812d5d6f8427871c7e38fff6b674f1;p=deliverable%2Fbinutils-gdb.git And remove the seconf accidental patch commission. --- diff --git a/binutils/objcopy.c b/binutils/objcopy.c index b38d1e589d..587d57f83d 100644 --- a/binutils/objcopy.c +++ b/binutils/objcopy.c @@ -1616,32 +1616,6 @@ copy_section (ibfd, isection, obfdarg) free (relpp); relpp = temp_relpp; } - else if (sections_removed) - { - /* Remove relocations which are against symbols - in sections that have been removed, unless - the symbols are going to be preserved. */ - arelent ** temp_relpp; - asymbol * sym; - long temp_relcount = 0; - long i; - - temp_relpp = (arelent **) xmalloc (relsize); - for (i = 0; i < relcount; i++) - { - sym = *relpp [i]->sym_ptr_ptr; - - /* FIXME: Should we warn about deleted relocs ? */ - if (is_specified_symbol (bfd_asymbol_name (sym), - keep_specific_list) - || bfd_get_output_section (sym) != NULL) - temp_relpp [temp_relcount++] = relpp [i]; - } - - relcount = temp_relcount; - free (relpp); - relpp = temp_relpp; - } bfd_set_reloc (obfd, osection, (relcount == 0 ? (arelent **) NULL : relpp), relcount);