target/arm/tcg/op_helper.c: make compilation unit common
Remove unused header accel/tcg/cpu-ldst.h that has target specifics. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-id: 20260407222208.271838-10-pierrick.bouvier@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Pierrick Bouvier committed
Apr 23, 2026 at 10:24 UTC
a421128fa887f2bd4f6bdef4933a397bfc5e9d4b
2 files changed
+2
-2
target/arm/tcg/meson.build
+2
-1
@@ -37,7 +37,6 @@ arm_ss.add(files(
37
'translate.c',
38
'm_helper.c',
39
'mve_helper.c',
40
- 'op_helper.c',
40
))
41
42
arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
@@ -74,6 +73,7 @@ arm_common_system_ss.add(
73
'debug.c',
74
'hflags.c',
75
'neon_helper.c',
76
+ 'op_helper.c',
77
'psci.c',
78
'tlb_helper.c',
79
'tlb-insns.c',
@@ -93,6 +93,7 @@ arm_user_ss.add(
93
'debug.c',
94
'hflags.c',
95
'neon_helper.c',
96
+ 'op_helper.c',
97
'tlb_helper.c',
98
'translate-m-nocp.c',
99
'translate-mve.c',
target/arm/tcg/op_helper.c
-1
@@ -23,7 +23,6 @@
23
#include "helper.h"
24
#include "internals.h"
25
#include "cpu-features.h"
26
-#include "accel/tcg/cpu-ldst.h"
26
#include "accel/tcg/probe.h"
27
#include "cpregs.h"
28