aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@issan.cs.uni-dortmund.de>1999-01-06 10:44:27 +0000
committerRichard Henderson <rth@gcc.gnu.org>1999-01-06 02:44:27 -0800
commit4a8832ee247040be633ad13e326c2d959ab9f0ae (patch)
treeccfc88d1e6d66ca6eb2b98496695703c72445976 /gcc
parent2813b56e0162a9ce1e9ba96c2b680c34bcecf830 (diff)
downloadgcc-4a8832ee247040be633ad13e326c2d959ab9f0ae.zip
gcc-4a8832ee247040be633ad13e326c2d959ab9f0ae.tar.gz
gcc-4a8832ee247040be633ad13e326c2d959ab9f0ae.tar.bz2
Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * config/m68k/m68k.c (const_uint32_operand): Remove CONSTANT_P_RTX handling. (const_sint32_operand): Likewise. From-SVN: r24515
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/m68k/m68k.c4
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0783b5f..12afa4c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+Wed Jan 6 10:43:29 1999 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
+
+ * 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 <ghazi@caip.rutgers.edu>
* 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 9303c6f..9aa9e71 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));