From: Philippe Mathieu-Daudé Date: Fri, 1 Dec 2023 17:58:00 +0000 (+0100) Subject: target/i386: Include missing 'exec/exec-all.h' header X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7e17a524698809ea0cd2b848eab5516a480af75a;p=qemu.git target/i386: Include missing 'exec/exec-all.h' header The XRSTOR instruction ends calling tlb_flush(), declared in "exec/exec-all.h". Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-Id: <20231211212003.21686-13-philmd@linaro.org> --- diff --git a/target/i386/tcg/fpu_helper.c b/target/i386/tcg/fpu_helper.c index 4b965a5d6c..ece22a3553 100644 --- a/target/i386/tcg/fpu_helper.c +++ b/target/i386/tcg/fpu_helper.c @@ -21,6 +21,7 @@ #include #include "cpu.h" #include "tcg-cpu.h" +#include "exec/exec-all.h" #include "exec/cpu_ldst.h" #include "exec/helper-proto.h" #include "fpu/softfloat.h"