From: Torbjorn Granlund Date: Fri, 8 Jan 1993 20:09:26 +0000 (+0000) Subject: (plus_xor_ior_operator): New predicate. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5fa1be5021116e9603dabe926bf3f9e05e4c593d;p=gcc.git (plus_xor_ior_operator): New predicate. From-SVN: r3157 --- diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 15a544bc2c0..a01b0b727b3 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -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); +}