(plus_xor_ior_operator): New predicate.

From-SVN: r3157
This commit is contained in:
Torbjorn Granlund 1993-01-08 20:09:26 +00:00
parent e35dd71d27
commit 5fa1be5021
1 changed files with 9 additions and 0 deletions

View File

@ -2627,3 +2627,12 @@ shadd_operand (op, mode)
return 1;
return 0;
}
int
plus_xor_ior_operator (op, mode)
rtx op;
enum machine_mode mode;
{
return (GET_CODE (op) == PLUS || GET_CODE (op) == XOR
|| GET_CODE (op) == IOR);
}