diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-04-27 15:11:14 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2000-04-27 15:11:14 +0000 |
commit | a034fba4ecd6c51e17a6a04df63bdad337fe8b62 (patch) | |
tree | d3e01466f65c2388d45db9a8b8f5f0e080ef0776 /gdb/irix5-nat.c | |
parent | 28d069e6477103b0eed4b0d2d6488ea14220bf95 (diff) | |
download | gdb-a034fba4ecd6c51e17a6a04df63bdad337fe8b62.zip gdb-a034fba4ecd6c51e17a6a04df63bdad337fe8b62.tar.gz gdb-a034fba4ecd6c51e17a6a04df63bdad337fe8b62.tar.bz2 |
2000-04-27 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* cxux-nat.c (add_shared_symbol_files): Don't treat .text section
as special in the section_addr_info structure.
* pa64solib.c (pa64_solib_add_solib_objfile): Ditto.
* osfsolib.c (symbol_add_stub): Ditto.
* irix5-nat.c (symbol_add_stub): Ditto.
Diffstat (limited to 'gdb/irix5-nat.c')
-rw-r--r-- | gdb/irix5-nat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/irix5-nat.c b/gdb/irix5-nat.c index 0c090de..2a16dc0 100644 --- a/gdb/irix5-nat.c +++ b/gdb/irix5-nat.c @@ -852,7 +852,9 @@ symbol_add_stub (arg) text_addr = bfd_section_vma (so->abfd, lowest_sect) + LM_OFFSET (so); } - section_addrs.text_addr = text_addr; + + section_addrs.other[0].name = ".text"; + section_addrs.other[0].addr = text_addr; so->objfile = symbol_file_add (so->so_name, so->from_tty, §ion_addrs, 0, 0); return (1); |