From: Pierrick Bouvier Date: Mon, 12 May 2025 18:04:30 +0000 (-0700) Subject: target/arm/debug_helper: only include common helpers X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f9fba6ddfc854f427e00d62c1e4888ce9a1a7c34;p=thirdparty%2Fqemu.git target/arm/debug_helper: only include common helpers Avoid pulling helper.h which contains TARGET_AARCH64. Reviewed-by: Richard Henderson Signed-off-by: Pierrick Bouvier Message-id: 20250512180502.2395029-17-pierrick.bouvier@linaro.org Signed-off-by: Peter Maydell --- diff --git a/target/arm/debug_helper.c b/target/arm/debug_helper.c index de7999f6a9..cad0a5db70 100644 --- a/target/arm/debug_helper.c +++ b/target/arm/debug_helper.c @@ -11,10 +11,12 @@ #include "internals.h" #include "cpu-features.h" #include "cpregs.h" -#include "exec/helper-proto.h" #include "exec/watchpoint.h" #include "system/tcg.h" +#define HELPER_H "tcg/helper.h" +#include "exec/helper-proto.h.inc" + #ifdef CONFIG_TCG /* Return the Exception Level targeted by debug exceptions. */ static int arm_debug_target_el(CPUARMState *env)