Commit 5fa1be50 by Torbjorn Granlund

(plus_xor_ior_operator): New predicate.

From-SVN: r3157
parent e35dd71d
...@@ -2627,3 +2627,12 @@ shadd_operand (op, mode) ...@@ -2627,3 +2627,12 @@ shadd_operand (op, mode)
return 1; return 1;
return 0; 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);
}
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