From d91fadf236ecd719176e8bad2966da93b1103175 Mon Sep 17 00:00:00 2001 From: rth Date: Wed, 6 Jan 1999 10:44:27 +0000 Subject: [PATCH] Andreas Schwab * config/m68k/m68k.c (const_uint32_operand): Remove CONSTANT_P_RTX handling. (const_sint32_operand): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24515 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 6 ++++++ gcc/config/m68k/m68k.c | 4 ---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0783b5f169c..12afa4c4978 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Wed Jan 6 10:43:29 1999 Andreas Schwab + + * config/m68k/m68k.c (const_uint32_operand): Remove CONSTANT_P_RTX + handling. + (const_sint32_operand): Likewise. + Wed Jan 6 09:44:51 1999 Kaveh R. Ghazi * toplev.h: In addition to checking _JBLEN, also check if `setjmp' diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index 9303c6f2b76..9aa9e71d207 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -3250,8 +3250,6 @@ const_uint32_operand (op, mode) rtx op; enum machine_mode mode ATTRIBUTE_UNUSED; { - if (GET_CODE (op) == CONSTANT_P_RTX) - return 1; #if HOST_BITS_PER_WIDE_INT > 32 /* All allowed constants will fit a CONST_INT. */ return (GET_CODE (op) == CONST_INT @@ -3271,8 +3269,6 @@ const_sint32_operand (op, mode) rtx op; enum machine_mode mode ATTRIBUTE_UNUSED; { - if (GET_CODE (op) == CONSTANT_P_RTX) - return 1; /* All allowed constants will fit a CONST_INT. */ return (GET_CODE (op) == CONST_INT && (INTVAL (op) >= (-0x7fffffff - 1) && INTVAL (op) <= 0x7fffffff)); -- 2.11.0