2000-08-02 Elena Zannoni <ezannoni@kwikemart.cygnus.com>

* remote-vx.c (vx_add_symbols): Fix typos.
This commit is contained in:
Elena Zannoni 2000-08-02 14:52:10 +00:00
parent 5a2402b8e0
commit 8a90270125
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2000-08-02 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* remote-vx.c (vx_add_symbols): Fix typos.
Wed Aug 2 19:15:34 2000 Andrew Cagney <cagney@b1.cygnus.com>
* arch-utils.h, gdbarch.c (default_register_sim_regno): New

View File

@ -685,9 +685,9 @@ vx_add_symbols (char *name, int from_tty, CORE_ADDR text_addr,
bfd_map_over_sections (objfile->obfd, find_sect, &ss);
/* Both COFF and b.out frontends use these SECT_OFF_* values. */
ANOFFSET (offs, SECT_OFF_TEXT (so->objfile)) = text_addr - ss.text_start;
ANOFFSET (offs, SECT_OFF_DATA (so->objfile)) = data_addr - ss.data_start;
ANOFFSET (offs, SECT_OFF_BSS (so->objfile)) = bss_addr - ss.bss_start;
ANOFFSET (offs, SECT_OFF_TEXT (objfile)) = text_addr - ss.text_start;
ANOFFSET (offs, SECT_OFF_DATA (objfile)) = data_addr - ss.data_start;
ANOFFSET (offs, SECT_OFF_BSS (objfile)) = bss_addr - ss.bss_start;
objfile_relocate (objfile, offs);
}