Commit 16b02ae0 by Richard Kenner

(mode_mask_operand): Always return a value.

From-SVN: r8105
parent cac9d91e
...@@ -227,13 +227,13 @@ mode_mask_operand (op, mode) ...@@ -227,13 +227,13 @@ mode_mask_operand (op, mode)
return CONST_DOUBLE_HIGH (op) == 0 && CONST_DOUBLE_LOW (op) == -1; return CONST_DOUBLE_HIGH (op) == 0 && CONST_DOUBLE_LOW (op) == -1;
#endif #endif
if (GET_CODE (op) == CONST_INT) return (GET_CODE (op) == CONST_INT
return (INTVAL (op) == 0xff && (INTVAL (op) == 0xff
|| INTVAL (op) == 0xffff || INTVAL (op) == 0xffff
#if HOST_BITS_PER_WIDE_INT == 64 #if HOST_BITS_PER_WIDE_INT == 64
|| INTVAL (op) == 0xffffffff || INTVAL (op) == 0xffffffff
#endif #endif
); ));
} }
/* Return 1 if OP is a multiple of 8 less than 64. */ /* Return 1 if OP is a multiple of 8 less than 64. */
......
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