diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-08-27 22:30:29 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-08-27 22:30:29 +0000 |
commit | f0a58b0b8c4dde0a186617d71b3280d8ce9379d0 (patch) | |
tree | 58bb74315c8a60f3bd667a4e66f624a586e91ecb /gdb/xcoffread.c | |
parent | bd415eabb699c911e5186fc9efc5a867e45ba7af (diff) | |
download | gdb-f0a58b0b8c4dde0a186617d71b3280d8ce9379d0.zip gdb-f0a58b0b8c4dde0a186617d71b3280d8ce9379d0.tar.gz gdb-f0a58b0b8c4dde0a186617d71b3280d8ce9379d0.tar.bz2 |
2000-08-27 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* pa64solib.c (pa64_solib_load_symbols): Don't use ANOFFSET as an
lvalue.
* xcoffread.c (xcoff_symfile_offsets): Ditto
* somsolib.c (som_solib_section_offsets): Ditto.
* somread.c (som_symfile_offsets): Ditto.
* rs6000-nat.c (vmap_symtab): Ditto.
* remote-vx.c (vx_add_symbols): Ditto.
* remote-os9k.c (rombug_wait): Ditto.
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r-- | gdb/xcoffread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index 47d44a5..ed55c74 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -2744,7 +2744,7 @@ xcoff_symfile_offsets (struct objfile *objfile, struct section_addr_info *addrs) sensibly), so just ignore the addr parameter and use 0. rs6000-nat.c will set the correct section offsets via objfile_relocate. */ - ANOFFSET (objfile->section_offsets, i) = 0; + (objfile->section_offsets)->offsets[i] = 0; } } |