* config/obj-bout.c (obj_crawl_symbol_chain): Don't take
the address of a function result.
This commit is contained in:
parent
6ee6cea6cd
commit
8141c27d66
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-12-12 Geoffrey Keating <geoffk@redhat.com>
|
||||
|
||||
* config/obj-bout.c (obj_crawl_symbol_chain): Don't take
|
||||
the address of a function result.
|
||||
|
||||
2000-12-12 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
|
||||
|
||||
* config/tc-ppc.c (md_pseudo_table): Add .file and .loc.
|
||||
|
|
|
@ -310,7 +310,7 @@ obj_crawl_symbol_chain (headers)
|
|||
}
|
||||
else /* .Stabd case. */
|
||||
symbolP->sy_name_offset = 0;
|
||||
symbolPP = &(symbol_next (symbolP));
|
||||
symbolPP = &(symbolP->sy_next);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue