* pa.c (call_operand_address): Do not accept registers anymore.
From-SVN: r4836
This commit is contained in:
parent
6c61ac77c0
commit
9c9a6f426c
@ -58,13 +58,17 @@ reg_or_0_operand (op, mode)
|
||||
return (op == CONST0_RTX (mode) || register_operand (op, mode));
|
||||
}
|
||||
|
||||
/* Return non-zero if OP is suitable for use in a call to a named
|
||||
function.
|
||||
|
||||
(???) For 2.5 try to eliminate either call_operand_address or
|
||||
function_label_operand, they perform very similar functions. */
|
||||
int
|
||||
call_operand_address (op, mode)
|
||||
rtx op;
|
||||
enum machine_mode mode;
|
||||
{
|
||||
return (REG_P (op)
|
||||
|| (CONSTANT_P (op) && ! TARGET_LONG_CALLS));
|
||||
return (CONSTANT_P (op) && ! TARGET_LONG_CALLS);
|
||||
}
|
||||
|
||||
/* Return 1 if X contains a symbolic expression. We know these
|
||||
|
Loading…
Reference in New Issue
Block a user