diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-04-01 21:16:39 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-06-05 12:04:29 -0700 |
| commit | 653c46daf20add70bf45db8b31edae8fbd584d9b (patch) | |
| tree | 40017eaec193c1f03ce1c88d2b326336054cc240 /include/exec | |
| parent | 1f17f91d437ff3437cf51d3cdd8f29e59530e38d (diff) | |
| download | focaccia-qemu-653c46daf20add70bf45db8b31edae8fbd584d9b.tar.gz focaccia-qemu-653c46daf20add70bf45db8b31edae8fbd584d9b.zip | |
accel/tcg: Tidy includes for translator.[ch]
Reduce the header to only bswap.h and cpu_ldst.h. Move exec/translate-all.h to translator.c. Reduce tcg.h and tcg-op.h to tcg-op-common.h. Remove otherwise unused headers. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec')
| -rw-r--r-- | include/exec/translator.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/exec/translator.h b/include/exec/translator.h index 228002a623..224ae14aa7 100644 --- a/include/exec/translator.h +++ b/include/exec/translator.h @@ -18,12 +18,8 @@ * member in your target-specific DisasContext. */ - #include "qemu/bswap.h" -#include "exec/exec-all.h" -#include "exec/cpu_ldst.h" -#include "exec/translate-all.h" -#include "tcg/tcg.h" +#include "exec/cpu_ldst.h" /* for abi_ptr */ /** * gen_intermediate_code |