From 15f6ed9f8b7a622ab343169d8a96587264dbdb73 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Thu, 28 Jan 1993 11:59:15 -0700 Subject: [PATCH] * pa.c (ior_operand): Do not accept registers. From-SVN: r3381 --- gcc/config/pa/pa.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index e55c0c3e1bf..75d298bc6e5 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -349,8 +349,7 @@ ior_operand (op, mode) rtx op; enum machine_mode mode; { - return (register_operand (op, mode) - || (GET_CODE (op) == CONST_INT && ior_mask_p (INTVAL (op)))); + return (GET_CODE (op) == CONST_INT && ior_mask_p (INTVAL (op))); } int -- 2.30.2