diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-01-28 11:59:15 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-01-28 11:59:15 -0700 |
commit | 15f6ed9f8b7a622ab343169d8a96587264dbdb73 (patch) | |
tree | 6a475741167d97c5b67fd1ee7617673ee3941bde | |
parent | 8f262c0d3eeec7f25bfb9e18a015e2cc58b5a08b (diff) | |
download | gcc-15f6ed9f8b7a622ab343169d8a96587264dbdb73.zip gcc-15f6ed9f8b7a622ab343169d8a96587264dbdb73.tar.gz gcc-15f6ed9f8b7a622ab343169d8a96587264dbdb73.tar.bz2 |
* pa.c (ior_operand): Do not accept registers.
From-SVN: r3381
-rw-r--r-- | gcc/config/pa/pa.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index e55c0c3e..75d298b 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 |