diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-04-28 14:57:49 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-04-28 14:57:49 -0400 |
commit | f85b95d1476dc627d4f7462f43327759ff7d4ad5 (patch) | |
tree | e089f26dad6ac2d2e79bc3334e4947435fbaa771 /gcc | |
parent | dbbe64450e86716dd63319ce855844c6fa82eda7 (diff) | |
download | gcc-f85b95d1476dc627d4f7462f43327759ff7d4ad5.zip gcc-f85b95d1476dc627d4f7462f43327759ff7d4ad5.tar.gz gcc-f85b95d1476dc627d4f7462f43327759ff7d4ad5.tar.bz2 |
(emit_block_move): Cast to unsiged HOST_WIDE_INT instead of unsigned int.
From-SVN: r4260
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |