From: Richard Henderson Date: Sun, 2 Apr 2023 04:12:50 +0000 (-0700) Subject: target/arm: Add missing include of exec/exec-all.h X-Git-Tag: qemu-xen-4.20.0~700^2~10 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=1f17f91d437ff3437cf51d3cdd8f29e59530e38d;p=qemu-xen.git 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é Signed-off-by: Richard Henderson --- diff --git a/target/arm/tcg/translate.h b/target/arm/tcg/translate.h index 5b53b6215d..4d88197715 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"