summaryrefslogtreecommitdiffstats
path: root/hmp-commands.hx
diff options
context:
space:
mode:
authorAlex Bennée2021-05-20 19:43:01 +0200
committerAlex Bennée2021-05-25 17:52:50 +0200
commitae49ce00198a46f635d5a37ab79209c145f7960f (patch)
tree40d4d8b63254169b93170d32116670777256ffa3 /hmp-commands.hx
parentgdbstub: Replace GdbCmdContext with plain g_array() (diff)
downloadqemu-ae49ce00198a46f635d5a37ab79209c145f7960f.tar.gz
qemu-ae49ce00198a46f635d5a37ab79209c145f7960f.tar.xz
qemu-ae49ce00198a46f635d5a37ab79209c145f7960f.zip
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>
Diffstat (limited to 'hmp-commands.hx')
-rw-r--r--hmp-commands.hx4
1 files changed, 2 insertions, 2 deletions
diff --git a/hmp-commands.hx b/hmp-commands.hx
index 435c591a1c..5ee9cfd520 100644
--- a/hmp-commands.hx
+++ b/hmp-commands.hx
@@ -1667,7 +1667,7 @@ ERST
{
.name = "replay_break",
- .args_type = "icount:i",
+ .args_type = "icount:l",
.params = "icount",
.help = "set breakpoint at the specified instruction count",
.cmd = hmp_replay_break,
@@ -1699,7 +1699,7 @@ ERST
{
.name = "replay_seek",
- .args_type = "icount:i",
+ .args_type = "icount:l",
.params = "icount",
.help = "replay execution to the specified instruction count",
.cmd = hmp_replay_seek,