target/mips: 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/mips/cpu.h:462:5: error: unknown type name 'target_ulong' 462 | target_ulong gpr[32]; | ^ Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-Id: <20260313062055.2188-12-philmd@linaro.org>
Philippe Mathieu-Daudé committed
Mar 13, 2026 at 05:17 UTC
c99244700dd882ba3bb0d062819dad48061da53d
1 file changed
+1
target/mips/cpu.h
+1
@@ -5,6 +5,7 @@
5
#include "exec/cpu-common.h"
6
#include "exec/cpu-defs.h"
7
#include "exec/cpu-interrupt.h"
8
+#include "exec/target_long.h"
9
#ifndef CONFIG_USER_ONLY
10
#include "system/memory.h"
11
#endif