diff options
author | Matheus Ferst <matheus.ferst@eldorado.org.br> | 2021-11-09 16:29:11 -0300 |
---|---|---|
committer | Cédric Le Goater <clg@kaod.org> | 2021-11-10 08:20:02 +0100 |
commit | 3620328f787de5190c3c7b0b0041348dc11d796a (patch) | |
tree | 5efb0871f076529036cc0021fabfb2ad9f7874b8 | |
parent | 0a70bcf18caf7a61d480f8448723c15209d128ef (diff) | |
download | qemu-3620328f787de5190c3c7b0b0041348dc11d796a.zip qemu-3620328f787de5190c3c7b0b0041348dc11d796a.tar.gz qemu-3620328f787de5190c3c7b0b0041348dc11d796a.tar.bz2 |
target/ppc: Fix register update on lf[sd]u[x]/stf[sd]u[x]
These instructions should update the GPR indicated by the field RA
instead of RT. This error caused a regression on Mac OS 9 boot and some
graphical glitches in OS X.
Fixes: a39a106634a9 ("target/ppc: Move load and store floating point instructions to decodetree")
Reported-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Tested-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
-rw-r--r-- | target/ppc/translate/fp-impl.c.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/ppc/translate/fp-impl.c.inc b/target/ppc/translate/fp-impl.c.inc index d1dbb1b..c9e0520 100644 --- a/target/ppc/translate/fp-impl.c.inc +++ b/target/ppc/translate/fp-impl.c.inc @@ -1328,7 +1328,7 @@ static bool do_lsfpsd(DisasContext *ctx, int rt, int ra, TCGv displ, set_fpr(rt, t0); } if (update) { - tcg_gen_mov_tl(cpu_gpr[rt], ea); + tcg_gen_mov_tl(cpu_gpr[ra], ea); } tcg_temp_free_i64(t0); tcg_temp_free(ea); |