This is like commit 86e6202a57b1 ("target/ppc: Make divw[u] handler
method decodetree compatible."), but for gen_op_arith_divd().
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
---
target/ppc/translate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/ppc/translate.c b/target/ppc/translate.c
index 02c810e8848..5a352cdad1b 100644
--- a/target/ppc/translate.c
+++ b/target/ppc/translate.c
@@ -1823,7 +1823,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);
}
}
--
2.45.2
On 12/8/24 10:53, Ilya Leoshkevich wrote: > This is like commit 86e6202a57b1 ("target/ppc: Make divw[u] handler > method decodetree compatible."), but for gen_op_arith_divd(). > > Suggested-by: Richard Henderson <richard.henderson@linaro.org> > Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com> > --- > target/ppc/translate.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
On 8/12/24 18:53, Ilya Leoshkevich wrote: > This is like commit 86e6202a57b1 ("target/ppc: Make divw[u] handler > method decodetree compatible."), but for gen_op_arith_divd(). > > Suggested-by: Richard Henderson <richard.henderson@linaro.org> > Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com> > --- > target/ppc/translate.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/target/ppc/translate.c b/target/ppc/translate.c > index 02c810e8848..5a352cdad1b 100644 > --- a/target/ppc/translate.c > +++ b/target/ppc/translate.c > @@ -1823,7 +1823,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); > } > } Reviewed-by: Richard Henderson <richard.henderson@linaro.org> r~
© 2016 - 2024 Red Hat, Inc.