mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
* eval.c (parse_and_eval_long): New function.
* value.h: Declare it. * breakpoint.c (breakpoints_info, maintenance_info_breakpoints): Call parse_and_eval_long, not parse_and_eval_address. * command.c (do_setshow_command): Ditto. * infcmd.c (step_1, signal_command, continue_command): Ditto. * infrun.c (signals_info): Ditto. * stack.c (set_backtrace_limit_command, backtrace_command_1, up_silently_base, down_silently_base): Ditto. * tracepoints.c (tracepoints_info, trace_find_command, trace_find_tracepoint_command): Ditto. * valprint.c (set_radix): Ditto. * values.c (show_values): Ditto.
This commit is contained in:
@@ -465,7 +465,7 @@ tracepoints_info (char *tpnum_exp, int from_tty)
|
||||
int tpnum = -1;
|
||||
|
||||
if (tpnum_exp)
|
||||
tpnum = parse_and_eval_address (tpnum_exp);
|
||||
tpnum = parse_and_eval_long (tpnum_exp);
|
||||
|
||||
ALL_TRACEPOINTS (t)
|
||||
if (tpnum == -1 || tpnum == t->number)
|
||||
@@ -1986,7 +1986,7 @@ trace_find_command (char *args, int from_tty)
|
||||
frameno = traceframe_number - 1;
|
||||
}
|
||||
else
|
||||
frameno = parse_and_eval_address (args);
|
||||
frameno = parse_and_eval_long (args);
|
||||
|
||||
if (frameno < -1)
|
||||
error ("invalid input (%d is less than zero)", frameno);
|
||||
|
||||
Reference in New Issue
Block a user