diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-12 16:20:12 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-20 17:44:57 +0100 |
| commit | 3e6bfabfbb12fbc19b92b03b72b948dc4f40d144 (patch) | |
| tree | 8973c6ffbbb2a74d34a2dbd7ad42c94c65de8c63 /accel/tcg/cpu-exec.c | |
| parent | e07788a98909431ea32a7e5baf1e90b246b5b1cd (diff) | |
| download | focaccia-qemu-3e6bfabfbb12fbc19b92b03b72b948dc4f40d144.tar.gz focaccia-qemu-3e6bfabfbb12fbc19b92b03b72b948dc4f40d144.zip | |
accel/tcg: Move TranslationBlock declarations to 'tb-internal.h'
Move declarations related to TranslationBlock out of the generic "internal-target.h" to "tb-internal.h". Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20241212185341.2857-11-philmd@linaro.org>
Diffstat (limited to 'accel/tcg/cpu-exec.c')
| -rw-r--r-- | accel/tcg/cpu-exec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/accel/tcg/cpu-exec.c b/accel/tcg/cpu-exec.c index 396fa6f4a6..e9eaab223f 100644 --- a/accel/tcg/cpu-exec.c +++ b/accel/tcg/cpu-exec.c @@ -41,6 +41,7 @@ #include "tb-jmp-cache.h" #include "tb-hash.h" #include "tb-context.h" +#include "tb-internal.h" #include "internal-common.h" #include "internal-target.h" |