(plus_xor_ior_operator): New predicate.
authorTorbjorn Granlund <tege@gnu.org>
Fri, 8 Jan 1993 20:09:26 +0000 (20:09 +0000)
committerTorbjorn Granlund <tege@gnu.org>
Fri, 8 Jan 1993 20:09:26 +0000 (20:09 +0000)
From-SVN: r3157

gcc/config/pa/pa.c

index 15a544bc2c07d335fbbeb0f2875438cd0f061848..a01b0b727b3fa0b8bcd2f1ec535201c6da69ac94 100644 (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);
+}