summaryrefslogtreecommitdiff
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
commitc076a40c7a2dd9b81af119c4a322b3c1bdb472ea (patch)
treedd724445aebb5154105f62e31a76ecbf13fcf9df /gdb/remote-vx.c
parent8145b17bd53b86ed534fe3e236015f94a64289d4 (diff)
downloadgdb-c076a40c7a2dd9b81af119c4a322b3c1bdb472ea.tar.gz
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 fd51781b196..2622cce1a9c 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);