(call, call_value): Don't use call_operand, since checking for

recursive calls at this point is not safe.

(const_16_operand, const_24_operand, gpc_reg_or_immediate_operand):
Fix typo in declaration of MODE.
(and_operand, add_operand): Likwise.

From-SVN: r2457
This commit is contained in:
Richard Kenner 1992-10-14 07:17:03 -04:00
parent a4f6608ca2
commit eb9aa33885

View File

@ -157,7 +157,7 @@ const_8_operand (op, mode)
int
const_16_operand (op, mode)
rtx op;
enum machine_mode;
enum machine_mode mode;
{
return shift_constant_operand (op, mode, 16);
}
@ -165,7 +165,7 @@ const_16_operand (op, mode)
int
const_24_operand (op, mode)
rtx op;
enum machine_mode;
enum machine_mode mode;
{
return shift_constant_operand (op, mode, 24);
}
@ -287,7 +287,7 @@ srcb_operand (op, mode)
int
gpc_reg_or_immediate_operand (op, mode)
rtx op;
enum machine_mode;
enum machine_mode mode;
{
return gpc_reg_operand (op, mode) || immediate_operand (op, mode);
}
@ -298,7 +298,7 @@ gpc_reg_or_immediate_operand (op, mode)
int
and_operand (op, mode)
rtx op;
enum machine_mode;
enum machine_mode mode;
{
return (srcb_operand (op, mode)
|| (GET_CODE (op) == CONST_INT
@ -312,7 +312,7 @@ and_operand (op, mode)
int
add_operand (op, mode)
rtx op;
enum machine_mode;
enum machine_mode mode;
{
return (srcb_operand (op, mode)
|| (GET_CODE (op) == CONST_INT