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 /tcg/tcg-common.c | |
| parent | f15d00a4c180ffd303dc9272f34a26a185f741f8 (diff) | |
| download | focaccia-qemu-93280b67381148d6b8b25f54f32901f868987c84.tar.gz focaccia-qemu-93280b67381148d6b8b25f54f32901f868987c84.zip | |
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 'tcg/tcg-common.c')
| -rw-r--r-- | tcg/tcg-common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tcg/tcg-common.c b/tcg/tcg-common.c index 35e7616ae9..fadc33c3d1 100644 --- a/tcg/tcg-common.c +++ b/tcg/tcg-common.c @@ -24,6 +24,7 @@ #include "qemu/osdep.h" #include "tcg/tcg.h" +#include "tcg-has.h" TCGOpDef tcg_op_defs[] = { #define DEF(s, oargs, iargs, cargs, flags) \ |