diff options
| author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-12 23:32:48 +0000 |
|---|---|---|
| committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-12 23:32:48 +0000 |
| commit | bdbf22e6b712adb6171a129efce67feece3a5b56 (patch) | |
| tree | e45dfeec37141eea30703f29132fd3bf161d2b7c | |
| parent | c69e3264c3553697077f88571829face4e673100 (diff) | |
| download | focaccia-qemu-bdbf22e6b712adb6171a129efce67feece3a5b56.tar.gz focaccia-qemu-bdbf22e6b712adb6171a129efce67feece3a5b56.zip | |
SH4: fix single-stepping
* target-sh/translate.c (gen_intermediate_code_internal): If singlestep is enabled, update PC before stopping. (Vladimir Prus) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5472 c046a42c-6fe2-441c-8c8c-71466251a162
| -rw-r--r-- | target-sh4/translate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-sh4/translate.c b/target-sh4/translate.c index ced761f2a5..4972450dbe 100644 --- a/target-sh4/translate.c +++ b/target-sh4/translate.c @@ -1867,6 +1867,7 @@ gen_intermediate_code_internal(CPUState * env, TranslationBlock * tb, if (tb->cflags & CF_LAST_IO) gen_io_end(); if (env->singlestep_enabled) { + tcg_gen_movi_i32(cpu_pc, ctx.pc); tcg_gen_helper_0_0(helper_debug); } else { switch (ctx.bstate) { |