This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Fix _bfd_elf_link_renumber_dynsyms return value


Daniel Jacobowitz wrote:
> On Sun, May 25, 2003 at 01:38:54PM +0200, Thiemo Seufer wrote:
> > Hello All,
> > 
> > this patch fixes _bfd_elf_link_renumber_dynsyms to actually return
> > the dynsymcount value.
> > 
> > I'm a bit surprised that this bug wasn't more visible.
> > 
> > 
> > Thiemo
> 
> Are you sure this patch does anything?  The value of "a = b" is the
> value of b.

Actually it does nothing more than improving readability.
(It _appeared_ to make a difference due to a miscompile.)


Thiemo


2003-05-27  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>

	/bfd/ChangeLog
	* elflink.c (_bfd_elf_link_renumber_dynsyms): Improve readability.


--- source-orig/bfd/elflink.c	Sun May 25 09:20:22 2003
+++ source/bfd/elflink.c	Sun May 25 10:12:52 2003
@@ -668,7 +668,9 @@ _bfd_elf_link_renumber_dynsyms (output_b
   if (dynsymcount != 0)
     ++dynsymcount;
 
-  return elf_hash_table (info)->dynsymcount = dynsymcount;
+  elf_hash_table (info)->dynsymcount = dynsymcount;
+
+  return dynsymcount;
 }
 
 /* This function is called when we want to define a new symbol.  It


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]