diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-03-15 11:36:57 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-03-15 11:36:57 -0700 |
commit | 5eb9c92c63cb100237da01600644eb19a8926612 (patch) | |
tree | 7c0d8f97977e7c71323e265a8f344a4e5254d7d6 | |
parent | 81722625a7b0446cb47bfe46e184d67b7d650d0f (diff) | |
download | gcc-5eb9c92c63cb100237da01600644eb19a8926612.zip gcc-5eb9c92c63cb100237da01600644eb19a8926612.tar.gz gcc-5eb9c92c63cb100237da01600644eb19a8926612.tar.bz2 |
* pa.c (shadd_operand): Delete.
From-SVN: r3738
-rw-r--r-- | gcc/config/pa/pa.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 84d1e50..3294f92 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -3001,21 +3001,6 @@ fmpysuboperands(operands) return 1; } -/* Return 1 if OP is suitable for the second add operand (the unshifed - operand) in an shadd instruction. Allow CONST_INT to work around - a reload bug. */ -int -shadd_operand (op, mode) - rtx op; - enum machine_mode mode; -{ - if (GET_CODE (op) == REG) - return 1; - if (GET_CODE (op) == CONST_INT) - return 1; - return 0; -} - int plus_xor_ior_operator (op, mode) rtx op; |