diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-04-01 21:12:50 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-06-05 12:04:29 -0700 |
commit | 1f17f91d437ff3437cf51d3cdd8f29e59530e38d (patch) | |
tree | a2d6b78ebc110a6b8173531b6a2df09dc6fa9aa9 | |
parent | d654e92817a6cece4dc96f9c736b825a3da4ee3f (diff) | |
download | qemu-1f17f91d437ff3437cf51d3cdd8f29e59530e38d.zip qemu-1f17f91d437ff3437cf51d3cdd8f29e59530e38d.tar.gz qemu-1f17f91d437ff3437cf51d3cdd8f29e59530e38d.tar.bz2 |
target/arm: Add missing include of exec/exec-all.h
This had been pulled in 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>
-rw-r--r-- | target/arm/tcg/translate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/arm/tcg/translate.h b/target/arm/tcg/translate.h index 5b53b62..4d88197 100644 --- a/target/arm/tcg/translate.h +++ b/target/arm/tcg/translate.h @@ -4,6 +4,7 @@ #include "cpu.h" #include "tcg/tcg-op.h" #include "tcg/tcg-op-gvec.h" +#include "exec/exec-all.h" #include "exec/translator.h" #include "exec/helper-gen.h" #include "internals.h" |