Commit f85b95d1 by Richard Kenner

(emit_block_move): Cast to unsiged HOST_WIDE_INT instead of unsigned int.

From-SVN: r4260
parent dbbe6445
......@@ -1377,7 +1377,7 @@ emit_block_move (x, y, size, align)
here because if SIZE is less than the mode mask, as it is
returned by the macro, it will definitely be less than the
actual mode mask. */
&& (unsigned) INTVAL (size) <= GET_MODE_MASK (mode)
&& (unsigned HOST_WIDE_INT) INTVAL (size) <= GET_MODE_MASK (mode)
&& (insn_operand_predicate[(int) code][0] == 0
|| (*insn_operand_predicate[(int) code][0]) (x, BLKmode))
&& (insn_operand_predicate[(int) code][1] == 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment