Don't use post-increment on structure copy to work around a ppc gcc bug.
This commit is contained in:
parent
65d7f9a691
commit
ccb57eba1c
@ -1,3 +1,8 @@
|
||||
2000-03-31 Alan Modra <alan@linuxcare.com.au>
|
||||
|
||||
* symtab.c (symtab_finalize): Don't use post-increment on
|
||||
structure copy to work around a ppc gcc bug.
|
||||
|
||||
1999-09-29 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* hertz.h [MACH] (hertz): Remove macro. The
|
||||
|
@ -132,7 +132,8 @@ DEFUN (symtab_finalize, (tab), Sym_Table * tab)
|
||||
/* retain sym only if it has a non-empty address range: */
|
||||
if (!src->end_addr || src->addr <= src->end_addr)
|
||||
{
|
||||
*dst++ = *src;
|
||||
*dst = *src;
|
||||
dst++;
|
||||
prev_addr = src->addr;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user