Commit 15f6ed9f by Jeff Law

* pa.c (ior_operand): Do not accept registers.

From-SVN: r3381
parent 8f262c0d
......@@ -349,8 +349,7 @@ ior_operand (op, mode)
rtx op;
enum machine_mode mode;
{
return (register_operand (op, mode)
|| (GET_CODE (op) == CONST_INT && ior_mask_p (INTVAL (op))));
return (GET_CODE (op) == CONST_INT && ior_mask_p (INTVAL (op)));
}
int
......
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