aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-vx.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-05-10 04:20:46 +0000
committerAndrew Cagney <cagney@redhat.com>2004-05-10 04:20:46 +0000
commitdc49745973a7aacba07093579038da83343d1cbf (patch)
tree60b7075a3c972b55b755d75eb6439052024c6cad /gdb/remote-vx.c
parent816a1cc6bf6254bad91555c136a042692eea0341 (diff)
downloadgdb-dc49745973a7aacba07093579038da83343d1cbf.zip
gdb-dc49745973a7aacba07093579038da83343d1cbf.tar.gz
gdb-dc49745973a7aacba07093579038da83343d1cbf.tar.bz2
2004-05-09 Andrew Cagney <cagney@redhat.com>
* remote-vx.c (net_step): Delete step-range code. * remote.c (remote_resume, init_all_packet_configs) (set_remote_protocol_E_packet_cmd) (show_remote_protocol_E_packet_cmd) (remote_protocol_E, show_remote_cmd, _initialize_remote) (remote_protocol_e, set_remote_protocol_e_packet_cmd) (show_remote_protocol_e_packet_cmd): Ditto.
Diffstat (limited to 'gdb/remote-vx.c')
-rw-r--r--gdb/remote-vx.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/gdb/remote-vx.c b/gdb/remote-vx.c
index fd51781..2622cce 100644
--- a/gdb/remote-vx.c
+++ b/gdb/remote-vx.c
@@ -747,17 +747,8 @@ net_step (void)
SOURCE_STEP source_step;
source_step.taskId = PIDGET (inferior_ptid);
-
- if (step_range_end)
- {
- source_step.startAddr = step_range_start;
- source_step.endAddr = step_range_end;
- }
- else
- {
- source_step.startAddr = 0;
- source_step.endAddr = 0;
- }
+ source_step.startAddr = 0;
+ source_step.endAddr = 0;
status = net_clnt_call (VX_SOURCE_STEP, xdr_SOURCE_STEP, &source_step,
xdr_int, &step_status);