From: Ilya Leoshkevich Date: Mon, 12 Aug 2024 08:53:09 +0000 (+0200) Subject: target/ppc: Make divd[u] handler method decodetree compatible X-Git-Tag: pull-vmclock-20250108~88^2~65 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=7b4820a3e1dfba2b81f2354e7c748fc04b275dba;p=users%2Fdwmw2%2Fqemu.git target/ppc: Make divd[u] handler method decodetree compatible This is like commit 86e6202a57b1 ("target/ppc: Make divw[u] handler method decodetree compatible."), but for gen_op_arith_divd(). Cc: qemu-stable@nongnu.org Suggested-by: Richard Henderson Signed-off-by: Ilya Leoshkevich Reviewed-by: Richard Henderson Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Nicholas Piggin --- diff --git a/target/ppc/translate.c b/target/ppc/translate.c index be93777cf6..47ca50a064 100644 --- a/target/ppc/translate.c +++ b/target/ppc/translate.c @@ -1820,7 +1820,7 @@ static inline void gen_op_arith_divd(DisasContext *ctx, TCGv ret, tcg_gen_or_tl(cpu_so, cpu_so, cpu_ov); } - if (unlikely(Rc(ctx->opcode) != 0)) { + if (unlikely(compute_rc0)) { gen_set_Rc0(ctx, ret); } }