[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 05/10] target/m68k/helper: Include missing "cpu.h" header
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 05/10] target/m68k/helper: Include missing "cpu.h" header |
Date: |
Fri, 16 Dec 2022 23:05:34 +0100 |
'dh_ctype_fp' is defined as 'FPReg *', itself declared in "cpu.h".
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
target/m68k/helper.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/target/m68k/helper.h b/target/m68k/helper.h
index c9bed2b884..aaf0e1668e 100644
--- a/target/m68k/helper.h
+++ b/target/m68k/helper.h
@@ -1,3 +1,5 @@
+#include "cpu.h"
+
DEF_HELPER_1(bitrev, i32, i32)
DEF_HELPER_1(ff1, i32, i32)
DEF_HELPER_FLAGS_2(sats, TCG_CALL_NO_RWG_SE, i32, i32, i32)
--
2.38.1
- Re: [PATCH 01/10] target/hppa/helper: Include missing "cpu.h" header, (continued)
- [PATCH 02/10] target/hexagon: Declare hexagon_regnames[] in "cpu.h", Philippe Mathieu-Daudé, 2022/12/16
- [PATCH 03/10] target/loongarch/cpu: Remove unused "sysbus.h" header, Philippe Mathieu-Daudé, 2022/12/16
- [PATCH 04/10] target/loongarch/cpu: Restrict "memory.h" header to sysemu, Philippe Mathieu-Daudé, 2022/12/16
- [PATCH 05/10] target/m68k/helper: Include missing "cpu.h" header,
Philippe Mathieu-Daudé <=
- [PATCH 06/10] target/ppc/helper: Include missing "cpu.h" header, Philippe Mathieu-Daudé, 2022/12/16
- [PATCH 07/10] target/ppc/internal: Restrict MMU declarations to sysemu, Philippe Mathieu-Daudé, 2022/12/16
- [PATCH 08/10] target/riscv/cpu: Restrict sysemu-specific fields from CPUArchState, Philippe Mathieu-Daudé, 2022/12/16
- [PATCH 09/10] target/sparc/sysemu: Remove pointless CONFIG_USER_ONLY guard, Philippe Mathieu-Daudé, 2022/12/16
- [PATCH 10/10] target/xtensa/cpu: Include missing "memory.h" header, Philippe Mathieu-Daudé, 2022/12/16