Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
authorAndreas Schwab <schwab@issan.cs.uni-dortmund.de>
Wed, 6 Jan 1999 10:44:27 +0000 (10:44 +0000)
committerRichard Henderson <rth@gcc.gnu.org>
Wed, 6 Jan 1999 10:44:27 +0000 (02:44 -0800)
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

gcc/ChangeLog
gcc/config/m68k/m68k.c

index 0783b5f169c8fdc3c15a4ccddfc3b406f97c5c3a..12afa4c497852ff53999769e37c55fae776c8a1b 100644 (file)
@@ -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'
index 9303c6f2b764c63578242e7a02780a53ca3bef5e..9aa9e71d2072e6e8b234351c6087a0545df36be1 100644 (file)
@@ -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));