From c27e27528f9811f47a36c83189dab558f6c54248 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sat, 22 Aug 2009 11:46:10 +0000 Subject: [PATCH] Sparc32/64: fix jmpl followed by branch Fix a case where 'jmpl' instruction followed by a branch instruction was handled incorrectly. Signed-off-by: Blue Swirl --- target-sparc/translate.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/target-sparc/translate.c b/target-sparc/translate.c index 9bbfd3cd23..61578ecc3c 100644 --- a/target-sparc/translate.c +++ b/target-sparc/translate.c @@ -1134,6 +1134,7 @@ static void do_branch(DisasContext *dc, int32_t offset, uint32_t insn, int cc, } else { dc->pc = dc->npc; dc->npc = target; + tcg_gen_mov_tl(cpu_pc, cpu_npc); } } else { flush_cond(dc, r_cond); @@ -1174,6 +1175,7 @@ static void do_fbranch(DisasContext *dc, int32_t offset, uint32_t insn, int cc, } else { dc->pc = dc->npc; dc->npc = target; + tcg_gen_mov_tl(cpu_pc, cpu_npc); } } else { flush_cond(dc, r_cond); -- 2.11.0