From: aurel32 Date: Fri, 7 Nov 2008 13:48:25 +0000 (+0000) Subject: target-ppc: fix flags computation for tcg_gen_qemu_st X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~13642 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e32ad5c268041525bf2e11b339609ec6f6d5ad2b;p=sdk%2Femulator%2Fqemu.git target-ppc: fix flags computation for tcg_gen_qemu_st Signed-off-by: Aurelien Jarno git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5644 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/target-ppc/translate.c b/target-ppc/translate.c index 03e553a..e48da0f 100644 --- a/target-ppc/translate.c +++ b/target-ppc/translate.c @@ -2759,7 +2759,7 @@ static always_inline void gen_qemu_ld64(TCGv arg0, TCGv arg1, int flags) static always_inline void gen_qemu_st8(TCGv arg0, TCGv arg1, int flags) { - gen_qemu_st8_ppc32(arg0, arg1, flags >> 1); + gen_qemu_st8_ppc32(arg0, arg1, flags); } static always_inline void gen_qemu_st16(TCGv arg0, TCGv arg1, int flags) @@ -2768,10 +2768,10 @@ static always_inline void gen_qemu_st16(TCGv arg0, TCGv arg1, int flags) TCGv temp = tcg_temp_new(TCG_TYPE_I32); tcg_gen_ext16u_i32(temp, arg0); tcg_gen_bswap16_i32(temp, temp); - gen_qemu_st16_ppc32(temp, arg1, flags >> 1); + gen_qemu_st16_ppc32(temp, arg1, flags); tcg_temp_free(temp); } else - gen_qemu_st16_ppc32(arg0, arg1, flags >> 1); + gen_qemu_st16_ppc32(arg0, arg1, flags); } static always_inline void gen_qemu_st32(TCGv arg0, TCGv arg1, int flags) @@ -2779,10 +2779,10 @@ static always_inline void gen_qemu_st32(TCGv arg0, TCGv arg1, int flags) if (unlikely(flags & 1)) { TCGv temp = tcg_temp_new(TCG_TYPE_I32); tcg_gen_bswap_i32(temp, arg0); - gen_qemu_st32_ppc32(temp, arg1, flags >> 1); + gen_qemu_st32_ppc32(temp, arg1, flags); tcg_temp_free(temp); } else - gen_qemu_st32_ppc32(arg0, arg1, flags >> 1); + gen_qemu_st32_ppc32(arg0, arg1, flags); } static always_inline void gen_qemu_st64(TCGv arg0, TCGv arg1, int flags) @@ -2790,10 +2790,10 @@ static always_inline void gen_qemu_st64(TCGv arg0, TCGv arg1, int flags) if (unlikely(flags & 1)) { TCGv temp = tcg_temp_new(TCG_TYPE_I64); tcg_gen_bswap_i64(temp, arg0); - gen_qemu_st64_ppc32(temp, arg1, flags >> 1); + gen_qemu_st64_ppc32(temp, arg1, flags); tcg_temp_free(temp); } else - gen_qemu_st64_ppc32(arg0, arg1, flags >> 1); + gen_qemu_st64_ppc32(arg0, arg1, flags); } #endif