diff options
author | Fred Fish <fnf@specifix.com> | 1997-08-19 15:46:20 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1997-08-19 15:46:20 +0000 |
commit | ee804cff4fb70d2cc5921acad6f31dc04941f16e (patch) | |
tree | 2866eea998bac09f8545047371d2beac054a61c5 /gdb/remote-vx.c | |
parent | c631cd59ddd00e76f99d41caf838b74e172dec2c (diff) | |
download | gdb-ee804cff4fb70d2cc5921acad6f31dc04941f16e.zip gdb-ee804cff4fb70d2cc5921acad6f31dc04941f16e.tar.gz gdb-ee804cff4fb70d2cc5921acad6f31dc04941f16e.tar.bz2 |
* objfiles.c (objfile_relocate): Add call to breakpoint_re_set
after relocations are complete.
* remote-vx.c (vx_add_symbols): Remove call to breakpoint_re_set,
this is now done in objfile_relocate.
PR 11308
Diffstat (limited to 'gdb/remote-vx.c')
-rw-r--r-- | gdb/remote-vx.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/remote-vx.c b/gdb/remote-vx.c index 00deb6f..9fe9894 100644 --- a/gdb/remote-vx.c +++ b/gdb/remote-vx.c @@ -715,9 +715,6 @@ vx_add_symbols (name, from_tty, text_addr, data_addr, bss_addr) ANOFFSET (offs, SECT_OFF_DATA) = data_addr - ss.data_start; ANOFFSET (offs, SECT_OFF_BSS) = bss_addr - ss.bss_start; objfile_relocate (objfile, offs); - - /* Need to do this *after* things are relocated. */ - breakpoint_re_set (); } /* This function allows the addition of incrementally linked object files. */ |