diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2021-07-06 17:03:32 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2021-07-09 09:38:18 -0700 |
| commit | 8973fe43bb6d80f01ea11686c29f98fc4dcae3a6 (patch) | |
| tree | e80f6ec75168a81fd5fa60c8bbea302ecac85363 /tcg/tcg.c | |
| parent | 05de778b5b8ab0b402996769117b88c7ea5c7c61 (diff) | |
| download | focaccia-qemu-8973fe43bb6d80f01ea11686c29f98fc4dcae3a6.tar.gz focaccia-qemu-8973fe43bb6d80f01ea11686c29f98fc4dcae3a6.zip | |
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/tcg.c')
| -rw-r--r-- | tcg/tcg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/tcg.c b/tcg/tcg.c index 5150ed700e..4dd4084419 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])); |