Commit 6d22d9a6 by Jeff Law

* pa.c (reg_or_cint_move_operand): Use cint_ok_for_move.

From-SVN: r3697
parent 6746a52e
......@@ -205,11 +205,8 @@ reg_or_cint_move_operand (op, mode)
return 1;
if (GET_CODE (op) == CONST_INT)
{
/* OK if ldo, ldil, or zdepi, can be used. */
return (INT_14_BITS (op) || (INTVAL (op) & 0x7ff) == 0
|| zdepi_cint_p (INTVAL (op)));
}
return cint_ok_for_move (INTVAL (op));
return 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