From: Richard Henderson Date: Mon, 3 May 2010 23:30:48 +0000 (-0700) Subject: tcg: Use INDEX_op_qemu_ld32 for 32-bit results. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3e1dbaddbf199762deaf00e3b3308f7508671e35;p=qemu.git tcg: Use INDEX_op_qemu_ld32 for 32-bit results. Signed-off-by: Richard Henderson Signed-off-by: Aurelien Jarno --- diff --git a/tcg/tcg-op.h b/tcg/tcg-op.h index bafac2bb6a..aa436de2ca 100644 --- a/tcg/tcg-op.h +++ b/tcg/tcg-op.h @@ -2172,12 +2172,20 @@ static inline void tcg_gen_qemu_ld16s(TCGv ret, TCGv addr, int mem_index) static inline void tcg_gen_qemu_ld32u(TCGv ret, TCGv addr, int mem_index) { +#if TARGET_LONG_BITS == 32 + tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32, ret, addr, mem_index); +#else tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32u, ret, addr, mem_index); +#endif } static inline void tcg_gen_qemu_ld32s(TCGv ret, TCGv addr, int mem_index) { +#if TARGET_LONG_BITS == 32 + tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32, ret, addr, mem_index); +#else tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32s, ret, addr, mem_index); +#endif } static inline void tcg_gen_qemu_ld64(TCGv_i64 ret, TCGv addr, int mem_index)