projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05de778
)
tcg: Add separator in INDEX_op_call dump
author
Richard Henderson
<richard.henderson@linaro.org>
Wed, 7 Jul 2021 00:03:32 +0000
(17:03 -0700)
committer
Richard Henderson
<richard.henderson@linaro.org>
Fri, 9 Jul 2021 16:38:18 +0000
(09:38 -0700)
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>
tcg/tcg.c
patch
|
blob
|
history
diff --git
a/tcg/tcg.c
b/tcg/tcg.c
index 5150ed700eeeb5b0691af5190f354274c9f56f33..4dd40844197ba6cc44a5c6bee523876df4a4d6cf 100644
(file)
--- 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]));