From: Richard Henderson Date: Wed, 7 Jul 2021 00:03:32 +0000 (-0700) Subject: tcg: Add separator in INDEX_op_call dump X-Git-Tag: v6.1.0-rc0~27^2~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8973fe43bb6d80f01ea11686c29f98fc4dcae3a6;p=thirdparty%2Fqemu.git tcg: Add separator in INDEX_op_call dump We lost the ',' following the called function name. Fixes: 3e92aa34434 Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- diff --git a/tcg/tcg.c b/tcg/tcg.c index 5150ed700ee..4dd40844197 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -1849,7 +1849,7 @@ static void tcg_dump_ops(TCGContext *s, bool have_prefs) col += qemu_log("plugin(%p)", func); } - col += qemu_log("$0x%x,$%d", info->flags, nb_oargs); + col += qemu_log(",$0x%x,$%d", info->flags, nb_oargs); for (i = 0; i < nb_oargs; i++) { col += qemu_log(",%s", tcg_get_arg_str(s, buf, sizeof(buf), op->args[i]));