aboutsummaryrefslogtreecommitdiff
path: root/target/rx/op_helper.c
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2021-07-19 14:41:55 -1000
committerRichard Henderson <richard.henderson@linaro.org>2021-10-15 16:39:14 -0700
commitb6509e35b9e3a3fa90cdafcb8d53bf75306f427b (patch)
tree0421be79339f79df05fb28bb8eeb0ac3be4ce814 /target/rx/op_helper.c
parent273b68b10428117ffb1917d4081cf8ab4cc940ca (diff)
downloadqemu-b6509e35b9e3a3fa90cdafcb8d53bf75306f427b.zip
qemu-b6509e35b9e3a3fa90cdafcb8d53bf75306f427b.tar.gz
qemu-b6509e35b9e3a3fa90cdafcb8d53bf75306f427b.tar.bz2
target/rx: Drop checks for singlestep_enabled
GDB single-stepping is now handled generically. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/rx/op_helper.c')
-rw-r--r--target/rx/op_helper.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/target/rx/op_helper.c b/target/rx/op_helper.c
index 4d315b4..11f952d 100644
--- a/target/rx/op_helper.c
+++ b/target/rx/op_helper.c
@@ -451,14 +451,6 @@ void QEMU_NORETURN helper_wait(CPURXState *env)
raise_exception(env, EXCP_HLT, 0);
}
-void QEMU_NORETURN helper_debug(CPURXState *env)
-{
- CPUState *cs = env_cpu(env);
-
- cs->exception_index = EXCP_DEBUG;
- cpu_loop_exit(cs);
-}
-
void QEMU_NORETURN helper_rxint(CPURXState *env, uint32_t vec)
{
raise_exception(env, 0x100 + vec, 0);