From: Alex Bennée Date: Thu, 20 May 2021 17:43:01 +0000 (+0100) Subject: hmp-commands: expand type of icount to "l" in replay commands X-Git-Tag: v6.1.0-rc0~102^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ae49ce00198a46f635d5a37ab79209c145f7960f;p=thirdparty%2Fqemu.git 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 Reviewed-by: Pavel Dovgalyuk Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20210520174303.12310-7-alex.bennee@linaro.org> --- diff --git a/hmp-commands.hx b/hmp-commands.hx index 435c591a1cc..5ee9cfd520a 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,