diff options
author | Richard Henderson | 2022-06-10 15:32:30 +0200 |
---|---|---|
committer | Peter Maydell | 2022-06-10 15:32:30 +0200 |
commit | 55ba15b73734e09fc8a14c88c34cad4c0e61abb2 (patch) | |
tree | b2e8a60b8a6aac81947598dc65882a7b6c007713 /target/arm/internals.h | |
parent | target/arm: Move exception_target_el out of line (diff) | |
download | qemu-55ba15b73734e09fc8a14c88c34cad4c0e61abb2.tar.gz qemu-55ba15b73734e09fc8a14c88c34cad4c0e61abb2.tar.xz qemu-55ba15b73734e09fc8a14c88c34cad4c0e61abb2.zip |
target/arm: Move arm_singlestep_active out of line
Move the function to debug_helper.c, and the
declaration to internals.h.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20220609202901.1177572-5-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/internals.h')
-rw-r--r-- | target/arm/internals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/arm/internals.h b/target/arm/internals.h index af9de2dbe5..64e2c1dfad 100644 --- a/target/arm/internals.h +++ b/target/arm/internals.h @@ -1325,6 +1325,7 @@ bool el_is_in_host(CPUARMState *env, int el); void aa32_max_features(ARMCPU *cpu); int exception_target_el(CPUARMState *env); +bool arm_singlestep_active(CPUARMState *env); /* Powers of 2 for sve_vq_map et al. */ #define SVE_VQ_POW2_MAP \ |