From: Richard Henderson Date: Mon, 22 Nov 2010 22:57:53 +0000 (-0800) Subject: tcg: Fix default definition of divu_i32 and remu_i32. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0909cbde9a1d42be9ab81f4f7e7d89c358212fd1;p=qemu.git tcg: Fix default definition of divu_i32 and remu_i32. The arguments to tcg_gen_helper32 for these functions were not updated correctly in rev 2bece2c88331f024a46527634e3dd91c71d22141. Signed-off-by: Richard Henderson Signed-off-by: Edgar E. Iglesias --- diff --git a/tcg/tcg-op.h b/tcg/tcg-op.h index c68927e665..3ee0a58ed1 100644 --- a/tcg/tcg-op.h +++ b/tcg/tcg-op.h @@ -727,7 +727,7 @@ static inline void tcg_gen_divu_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2) sizemask |= tcg_gen_sizemask(1, 0, 0); sizemask |= tcg_gen_sizemask(2, 0, 0); - tcg_gen_helper32(tcg_helper_divu_i32, ret, arg1, arg2, 0); + tcg_gen_helper32(tcg_helper_divu_i32, sizemask, ret, arg1, arg2); } static inline void tcg_gen_remu_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2) @@ -738,7 +738,7 @@ static inline void tcg_gen_remu_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2) sizemask |= tcg_gen_sizemask(1, 0, 0); sizemask |= tcg_gen_sizemask(2, 0, 0); - tcg_gen_helper32(tcg_helper_remu_i32, ret, arg1, arg2, 0); + tcg_gen_helper32(tcg_helper_remu_i32, sizemask, ret, arg1, arg2); } #endif