aboutsummaryrefslogtreecommitdiff
path: root/tcg
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2021-07-06 17:03:32 -0700
committerRichard Henderson <richard.henderson@linaro.org>2021-07-09 09:38:18 -0700
commit8973fe43bb6d80f01ea11686c29f98fc4dcae3a6 (patch)
treee80f6ec75168a81fd5fa60c8bbea302ecac85363 /tcg
parent05de778b5b8ab0b402996769117b88c7ea5c7c61 (diff)
downloadqemu-8973fe43bb6d80f01ea11686c29f98fc4dcae3a6.zip
qemu-8973fe43bb6d80f01ea11686c29f98fc4dcae3a6.tar.gz
qemu-8973fe43bb6d80f01ea11686c29f98fc4dcae3a6.tar.bz2
tcg: Add separator in INDEX_op_call dump
We lost the ',' following the called function name. Fixes: 3e92aa34434 Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg')
-rw-r--r--tcg/tcg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/tcg.c b/tcg/tcg.c
index 5150ed7..4dd4084 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]));