aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Taylor <taylor@redhat.com>2000-11-16 14:51:50 +0000
committerDavid Taylor <taylor@redhat.com>2000-11-16 14:51:50 +0000
commit0e828ed16355f173bcf2f6950fb21c86c7ffb9fe (patch)
tree9eb9e542572a3333e1f70d7bfb7e6545eaf3287e
parent5dd42ef455069a3a7787c177ffdf5789d7cebed1 (diff)
downloadgdb-0e828ed16355f173bcf2f6950fb21c86c7ffb9fe.zip
gdb-0e828ed16355f173bcf2f6950fb21c86c7ffb9fe.tar.gz
gdb-0e828ed16355f173bcf2f6950fb21c86c7ffb9fe.tar.bz2
* tracepoint.c (trace_find_tracepoint_command): Replace call to
parse_and_eval_address with a call to parse_and_eval_long as we are evaluating an integer, not an address. * top.c (show_commands): Ditto.
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/top.c2
-rw-r--r--gdb/tracepoint.c2
3 files changed, 9 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 5750b57..af10432 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+Thu Nov 16 09:47:57 2000 David Taylor <taylor@redhat.com>
+
+ * tracepoint.c (trace_find_tracepoint_command): Replace call to
+ parse_and_eval_address with a call to parse_and_eval_long as
+ we are evaluating an integer, not an address.
+ * top.c (show_commands): Ditto.
+
2000-11-15 Kevin Buettner <kevinb@redhat.com>
* xcoffread.c (arrange_linetable, xcoff_initial_scan): Protoize.
diff --git a/gdb/top.c b/gdb/top.c
index 7bc5562..0b04c3c 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -3852,7 +3852,7 @@ extern HIST_ENTRY *history_get (int);
;
else
/* "info editing <exp>" should print around command number <exp>. */
- num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
+ num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
}
/* "show commands" means print the last Hist_print commands. */
else
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c
index 8c229d4..6ac3759 100644
--- a/gdb/tracepoint.c
+++ b/gdb/tracepoint.c
@@ -2055,7 +2055,7 @@ trace_find_tracepoint_command (char *args, int from_tty)
else
tdp = tracepoint_number; /* default is current TDP */
else
- tdp = parse_and_eval_address (args);
+ tdp = parse_and_eval_long (args);
sprintf (target_buf, "QTFrame:tdp:%x", tdp);
finish_tfind_command (target_buf, sizeof (target_buf), from_tty);