diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2024-12-29 13:13:56 -0800 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2025-01-16 20:57:16 -0800 |
commit | 87431dd6a94e757858d131279040aec17a444eec (patch) | |
tree | d8a6aafd19edbf277d461065a0ac384ef6bff2c4 /include/tcg | |
parent | 76da0a9c83e65634cb24502e642a194177a24853 (diff) | |
download | qemu-87431dd6a94e757858d131279040aec17a444eec.zip qemu-87431dd6a94e757858d131279040aec17a444eec.tar.gz qemu-87431dd6a94e757858d131279040aec17a444eec.tar.bz2 |
tcg/tci: Move TCI specific opcodes to tcg-target-opc.h.inc
Now that tcg-target-opc.h.inc is unconditional,
we can move these out of the generic header.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/tcg')
-rw-r--r-- | include/tcg/tcg-opc.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/tcg/tcg-opc.h b/include/tcg/tcg-opc.h index 93622f3..14aff6e 100644 --- a/include/tcg/tcg-opc.h +++ b/include/tcg/tcg-opc.h @@ -303,12 +303,6 @@ DEF(last_generic, 0, 0, 0, TCG_OPF_NOT_PRESENT) #include "tcg-target-opc.h.inc" -#ifdef TCG_TARGET_INTERPRETER -/* These opcodes are only for use between the tci generator and interpreter. */ -DEF(tci_movi, 1, 0, 1, TCG_OPF_NOT_PRESENT) -DEF(tci_movl, 1, 0, 1, TCG_OPF_NOT_PRESENT) -#endif - #undef DATA64_ARGS #undef IMPL #undef IMPL64 |