diff options
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/obj-bout.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index ff053dc..e5579dd 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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. diff --git a/gas/config/obj-bout.c b/gas/config/obj-bout.c index 0cd2f6d..736afb4 100644 --- a/gas/config/obj-bout.c +++ b/gas/config/obj-bout.c @@ -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 { |