diff options
Diffstat (limited to 'target-lm32')
-rw-r--r-- | target-lm32/translate.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-lm32/translate.c b/target-lm32/translate.c index c61ad0f9ab..fa5b0b93a3 100644 --- a/target-lm32/translate.c +++ b/target-lm32/translate.c @@ -1078,6 +1078,11 @@ void gen_intermediate_code(CPULM32State *env, struct TranslationBlock *tb) tcg_gen_movi_tl(cpu_pc, dc->pc); t_gen_raise_exception(dc, EXCP_DEBUG); dc->is_jmp = DISAS_UPDATE; + /* The address covered by the breakpoint must be included in + [tb->pc, tb->pc + tb->size) in order to for it to be + properly cleared -- thus we increment the PC here so that + the logic setting tb->size below does the right thing. */ + dc->pc += 4; break; } |