From: Philippe Mathieu-Daudé Date: Sat, 17 Dec 2022 15:24:54 +0000 (+0100) Subject: target/s390x/tcg/excp_helper: Restrict system headers to sysemu X-Git-Tag: v8.0.0-rc0~100^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4272df0987366a96ac10a3961aa2eccbb42d41f;p=thirdparty%2Fqemu.git target/s390x/tcg/excp_helper: Restrict system headers to sysemu Signed-off-by: Philippe Mathieu-Daudé Message-Id: <20221217152454.96388-6-philmd@linaro.org> Reviewed-by: Thomas Huth Reviewed-by: Richard Henderson Signed-off-by: Thomas Huth --- diff --git a/target/s390x/tcg/excp_helper.c b/target/s390x/tcg/excp_helper.c index fe02d822013..bc767f04438 100644 --- a/target/s390x/tcg/excp_helper.c +++ b/target/s390x/tcg/excp_helper.c @@ -21,15 +21,15 @@ #include "qemu/osdep.h" #include "qemu/log.h" #include "cpu.h" -#include "s390x-internal.h" #include "exec/helper-proto.h" -#include "qemu/timer.h" #include "exec/exec-all.h" #include "exec/cpu_ldst.h" -#include "hw/s390x/ioinst.h" -#include "exec/address-spaces.h" +#include "s390x-internal.h" #include "tcg_s390x.h" #ifndef CONFIG_USER_ONLY +#include "qemu/timer.h" +#include "exec/address-spaces.h" +#include "hw/s390x/ioinst.h" #include "hw/s390x/s390_flic.h" #include "hw/boards.h" #endif