diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-04-01 21:11:29 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-06-05 12:04:29 -0700 |
commit | d654e92817a6cece4dc96f9c736b825a3da4ee3f (patch) | |
tree | 577cc1bf7b18353f7617414f4b757b7b0812e639 /target/mips | |
parent | 8cab4157e93105864c579ecac96b520bc13052f4 (diff) | |
download | qemu-d654e92817a6cece4dc96f9c736b825a3da4ee3f.zip qemu-d654e92817a6cece4dc96f9c736b825a3da4ee3f.tar.gz qemu-d654e92817a6cece4dc96f9c736b825a3da4ee3f.tar.bz2 |
target/*: Add missing includes of exec/translation-block.h
This had been pulled in via exec/exec-all.h, via exec/translator.h,
but the include of exec-all.h will be removed.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/mips')
-rw-r--r-- | target/mips/tcg/translate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/mips/tcg/translate.c b/target/mips/tcg/translate.c index f3da05b..74af91e 100644 --- a/target/mips/tcg/translate.c +++ b/target/mips/tcg/translate.c @@ -26,6 +26,7 @@ #include "translate.h" #include "internal.h" #include "exec/helper-proto.h" +#include "exec/translation-block.h" #include "semihosting/semihost.h" #include "trace.h" #include "disas/disas.h" |