@samitouri / QOSamiQemu / commits / 77537e953a

target/hppa: Include missing 'exec/target_long.h' header

The "exec/target_long.h" header is indirectly included, pulled via "exec/cpu-defs.h". Include it explicitly otherwise we'd get when removing the latter: target/hppa/cpu.h:375:1: error: unknown type name 'target_ulong' 375 | target_ulong cpu_hppa_get_psw(CPUHPPAState *env); | ^ Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-Id: <20260313062055.2188-9-philmd@linaro.org>

Philippe Mathieu-Daudé committed Mar 13, 2026 at 05:17 UTC 77537e953a6ed47c80bab9111cfe6819225a9d9c
1 file changed +1
target/hppa/cpu.h
+1
@@ -24,6 +24,7 @@
24 #include "exec/cpu-common.h"
25 #include "exec/cpu-defs.h"
26 #include "exec/cpu-interrupt.h"
27 +#include "exec/target_long.h"
28 #include "system/memory.h"
29 #include "qemu/cpu-float.h"
30 #include "qemu/interval-tree.h"