diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2025-01-08 22:51:55 +0100 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2025-01-16 20:57:16 -0800 |
commit | 93280b67381148d6b8b25f54f32901f868987c84 (patch) | |
tree | 8d91b98d3ae9dd9f9c694c1f6016f486c71a5703 /include/tcg | |
parent | f15d00a4c180ffd303dc9272f34a26a185f741f8 (diff) | |
download | qemu-93280b67381148d6b8b25f54f32901f868987c84.zip qemu-93280b67381148d6b8b25f54f32901f868987c84.tar.gz qemu-93280b67381148d6b8b25f54f32901f868987c84.tar.bz2 |
tcg: Only include 'tcg-has.h' when necessary
TCG_TARGET_HAS_* definitions don't need to be exposed
by "tcg/tcg.h". Only include 'tcg-has.h' when necessary.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20250108215156.8731-15-philmd@linaro.org>
Diffstat (limited to 'include/tcg')
-rw-r--r-- | include/tcg/tcg.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h index 4352ec0..e5fa69d 100644 --- a/include/tcg/tcg.h +++ b/include/tcg/tcg.h @@ -64,8 +64,6 @@ typedef uint64_t TCGRegSet; #error unsupported #endif -#include "tcg/tcg-has.h" - typedef enum TCGOpcode { #define DEF(name, oargs, iargs, cargs, flags) INDEX_op_ ## name, #include "tcg/tcg-opc.h" |