From: Jeff Law Date: Wed, 10 Mar 1993 17:45:14 +0000 (-0700) Subject: * pa.c (reg_or_cint_move_operand): Use cint_ok_for_move. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6d22d9a6e039ccec3ab8c42674d93ecb7a24173b;p=gcc.git * pa.c (reg_or_cint_move_operand): Use cint_ok_for_move. From-SVN: r3697 --- diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index de5d5f76830..ea26fac4cfb 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -205,11 +205,8 @@ reg_or_cint_move_operand (op, mode) return 1; if (GET_CODE (op) == CONST_INT) - { - /* OK if ldo, ldil, or zdepi, can be used. */ - return (INT_14_BITS (op) || (INTVAL (op) & 0x7ff) == 0 - || zdepi_cint_p (INTVAL (op))); - } + return cint_ok_for_move (INTVAL (op)); + return 0; }