Commit f5a28898 by Richard Kenner

(reg_or_short_operand): Remove redundant test.

From-SVN: r5535
parent 38b3167e
......@@ -217,10 +217,7 @@ reg_or_short_operand (op, mode)
register rtx op;
enum machine_mode mode;
{
if (GET_CODE (op) == CONST_INT)
return short_cint_operand (op, mode);
return gpc_reg_operand (op, mode);
return short_cint_operand (op, mode) || gpc_reg_operand (op, mode);
}
/* Similar, except check if the negation of the constant would be valid for
......
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