diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1997-03-05 11:29:31 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1997-03-05 11:29:31 -0800 |
commit | 2dfe5480598b33c904aa769a75325f4025ada70e (patch) | |
tree | 7d91bb02a3fdc838924fad1229c9daacd6e6b2e0 /gcc | |
parent | 9da7b10605d42e9b07fe6d04a41eedd58c614341 (diff) | |
download | gcc-2dfe5480598b33c904aa769a75325f4025ada70e.zip gcc-2dfe5480598b33c904aa769a75325f4025ada70e.tar.gz gcc-2dfe5480598b33c904aa769a75325f4025ada70e.tar.bz2 |
(complemented_arith_operand): Delete function.
(print_operand): Don't handle `e' for CONST_INT.
From-SVN: r13692
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index ffc254a..eaf24c2 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -386,21 +386,6 @@ uns_arith_operand (op, mode) } /* Return truth value of whether OP can be used as an operands - where a register or complemented 16 bit unsigned integer is needed. */ - -int -complemented_arith_operand (op, mode) - rtx op; - enum machine_mode mode; -{ - if (GET_CODE (op) == CONST_INT - && (~ (unsigned HOST_WIDE_INT) INTVAL (op) < 0x10000)) - return TRUE; - - return register_operand (op, mode); -} - -/* Return truth value of whether OP can be used as an operands where a 16 bit integer is needed */ int @@ -4145,9 +4130,6 @@ print_operand (file, op, letter) else if ((letter == 'd') && (GET_CODE(op) == CONST_INT)) fprintf (file, "%d", (INTVAL(op))); - else if ((letter == 'e') && (GET_CODE(op) == CONST_INT)) - fprintf (file, "%d", ~(INTVAL(op))); - else if (letter == 'z' && (GET_CODE (op) == CONST_INT) && INTVAL (op) == 0) |