hmp-commands: expand type of icount to "l" in replay commands

This is not a 32 bit number, it can (and most likely will) be quite a
big one.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210520174303.12310-7-alex.bennee@linaro.org>
This commit is contained in:
Alex Bennée 2021-05-20 18:43:01 +01:00
parent 26a16181fa
commit ae49ce0019

View File

@ -1667,7 +1667,7 @@ ERST
{ {
.name = "replay_break", .name = "replay_break",
.args_type = "icount:i", .args_type = "icount:l",
.params = "icount", .params = "icount",
.help = "set breakpoint at the specified instruction count", .help = "set breakpoint at the specified instruction count",
.cmd = hmp_replay_break, .cmd = hmp_replay_break,
@ -1699,7 +1699,7 @@ ERST
{ {
.name = "replay_seek", .name = "replay_seek",
.args_type = "icount:i", .args_type = "icount:l",
.params = "icount", .params = "icount",
.help = "replay execution to the specified instruction count", .help = "replay execution to the specified instruction count",
.cmd = hmp_replay_seek, .cmd = hmp_replay_seek,