On 3 July 2013 22:29, Richard Henderson <r...@twiddle.net> wrote: > There are several hosts with only a "div" insn. Remainder is computed > manually from the quotient and inputs. We can do this generically. > > Signed-off-by: Richard Henderson <r...@twiddle.net> > --- a/tcg/tci/tcg-target.h > +++ b/tcg/tci/tcg-target.h > @@ -61,6 +61,7 @@ > #define TCG_TARGET_HAS_bswap32_i32 1 > /* Not more than one of the next two defines must be 1. */ > #define TCG_TARGET_HAS_div_i32 1 > +#define TCG_TARGET_HAS_rem_i32 1 > #define TCG_TARGET_HAS_div2_i32 0 > #define TCG_TARGET_HAS_ext8s_i32 1 > #define TCG_TARGET_HAS_ext16s_i32 1 > @@ -85,6 +86,7 @@ > #define TCG_TARGET_HAS_deposit_i64 1 > /* Not more than one of the next two defines must be 1. */ > #define TCG_TARGET_HAS_div_i64 0 > +#define TCG_TARGET_HAS_rem_i64 0 > #define TCG_TARGET_HAS_div2_i64 0 > #define TCG_TARGET_HAS_ext8s_i64 1 > #define TCG_TARGET_HAS_ext16s_i64 1
The added line in the these two hunks makes the comments wrong, doesn't it? Other than that, Reviewed-by: Peter Maydell <peter.mayd...@linaro.org> -- PMM