diff options
author | Richard Henderson | 2021-01-31 00:46:17 +0100 |
---|---|---|
committer | Richard Henderson | 2021-03-17 14:24:44 +0100 |
commit | 65f1b6cc9a902560e5fcd9688fe8ffe44004ad33 (patch) | |
tree | 627747c9161c2f79ab0cf809e31af9b226445cb3 /tcg/tci/tcg-target.c.inc | |
parent | tcg/tci: Hoist op_size checking into tci_args_* (diff) | |
download | qemu-65f1b6cc9a902560e5fcd9688fe8ffe44004ad33.tar.gz qemu-65f1b6cc9a902560e5fcd9688fe8ffe44004ad33.tar.xz qemu-65f1b6cc9a902560e5fcd9688fe8ffe44004ad33.zip |
tcg/tci: Remove tci_disas
This function is unused. It's not even the disassembler,
which is print_insn_tci, located in disas/tci.c.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tci/tcg-target.c.inc')
-rw-r--r-- | tcg/tci/tcg-target.c.inc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tcg/tci/tcg-target.c.inc b/tcg/tci/tcg-target.c.inc index 6c187a25cc..7fb3b04eaf 100644 --- a/tcg/tci/tcg-target.c.inc +++ b/tcg/tci/tcg-target.c.inc @@ -253,16 +253,6 @@ static bool patch_reloc(tcg_insn_unit *code_ptr, int type, return true; } -#if defined(CONFIG_DEBUG_TCG_INTERPRETER) -/* Show current bytecode. Used by tcg interpreter. */ -void tci_disas(uint8_t opc) -{ - const TCGOpDef *def = &tcg_op_defs[opc]; - fprintf(stderr, "TCG %s %u, %u, %u\n", - def->name, def->nb_oargs, def->nb_iargs, def->nb_cargs); -} -#endif - /* Write value (native size). */ static void tcg_out_i(TCGContext *s, tcg_target_ulong v) { |