mirror of https://github.com/xemu-project/xemu.git
tcg: Add separator in INDEX_op_call dump
We lost the ',' following the called function name.
Fixes: 3e92aa3443
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
05de778b5b
commit
8973fe43bb
|
@ -1849,7 +1849,7 @@ static void tcg_dump_ops(TCGContext *s, bool have_prefs)
|
||||||
col += qemu_log("plugin(%p)", func);
|
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++) {
|
for (i = 0; i < nb_oargs; i++) {
|
||||||
col += qemu_log(",%s", tcg_get_arg_str(s, buf, sizeof(buf),
|
col += qemu_log(",%s", tcg_get_arg_str(s, buf, sizeof(buf),
|
||||||
op->args[i]));
|
op->args[i]));
|
||||||
|
|
Loading…
Reference in New Issue