mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
target-ppc: Bug Fix: srawi
For 64 bit implementations, the special case of a shift by zero should result in the sign extension of the least significant 32 bits of the source GPR (not a direct copy of the 64 bit source GPR). Example: R3 A6212433228F41DC srawi 3,3,0 R3 expected : 00000000228F41DC R3 actual : A6212433228F41DC (without this patch) Signed-off-by: Tom Musta <tommusta@gmail.com> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
9824d01d5d
commit
34a0fad102
1 changed files with 1 additions and 1 deletions
|
@ -1944,7 +1944,7 @@ static void gen_srawi(DisasContext *ctx)
|
||||||
TCGv dst = cpu_gpr[rA(ctx->opcode)];
|
TCGv dst = cpu_gpr[rA(ctx->opcode)];
|
||||||
TCGv src = cpu_gpr[rS(ctx->opcode)];
|
TCGv src = cpu_gpr[rS(ctx->opcode)];
|
||||||
if (sh == 0) {
|
if (sh == 0) {
|
||||||
tcg_gen_mov_tl(dst, src);
|
tcg_gen_ext32s_tl(dst, src);
|
||||||
tcg_gen_movi_tl(cpu_ca, 0);
|
tcg_gen_movi_tl(cpu_ca, 0);
|
||||||
} else {
|
} else {
|
||||||
TCGv t0;
|
TCGv t0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue