Commit 87006d137870541dac1b8a7adce8fcad6eb393a6
1 parent
b29fe3ed
target-ppc: fix regression introduced by commit 5729
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5733 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
target-ppc/translate.c
... | ... | @@ -3066,7 +3066,7 @@ void always_inline gen_qemu_st32r(TCGv t0, TCGv t1, int flags) |
3066 | 3066 | tcg_gen_bswap_i32(temp, temp); |
3067 | 3067 | tcg_gen_extu_i32_tl(t2, temp); |
3068 | 3068 | tcg_temp_free_i32(temp); |
3069 | - gen_qemu_st16(t2, t1, flags); | |
3069 | + gen_qemu_st32(t2, t1, flags); | |
3070 | 3070 | tcg_temp_free(t2); |
3071 | 3071 | } |
3072 | 3072 | GEN_STX(32r, 0x16, 0x14, PPC_INTEGER); | ... | ... |