From 1f01ff809a107816317c4ac8a7eff1cbd3700370 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Sat, 5 Mar 2016 17:30:22 -0800 Subject: make host wide int 32 bits --- gcc/expr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/expr.c') diff --git a/gcc/expr.c b/gcc/expr.c index 225b410..7bf1cb0 100755 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -1687,7 +1687,7 @@ emit_block_move (x, y, size, align) returned by the macro, it will definitely be less than the actual mode mask. */ && ((GET_CODE (size) == CONST_INT - && ((unsigned HOST_WIDE_INT) INTVAL (size) + && ((HOST_WIDE_UINT) INTVAL (size) <= (GET_MODE_MASK (mode) >> 1))) || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD) && (insn_operand_predicate[(int) code][0] == 0 @@ -2410,7 +2410,7 @@ clear_storage (object, size, align) the mode mask, as it is returned by the macro, it will definitely be less than the actual mode mask. */ && ((GET_CODE (size) == CONST_INT - && ((unsigned HOST_WIDE_INT) INTVAL (size) + && ((HOST_WIDE_UINT) INTVAL (size) <= (GET_MODE_MASK (mode) >> 1))) || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD) && (insn_operand_predicate[(int) code][0] == 0 @@ -2947,7 +2947,7 @@ emit_push_insn (x, mode, type, size, align, partial, reg, extra, if (code != CODE_FOR_nothing && ((GET_CODE (size) == CONST_INT - && ((unsigned HOST_WIDE_INT) INTVAL (size) + && ((HOST_WIDE_UINT) INTVAL (size) <= (GET_MODE_MASK (mode) >> 1))) || GET_MODE_BITSIZE (mode) >= BITS_PER_WORD) && (insn_operand_predicate[(int) code][0] == 0 -- cgit v1.2.3