* pa.c (move_operand): Accept CONSTANT_P_RTX.
authorJeffrey A Law <law@cygnus.com>
Mon, 27 Jul 1998 21:20:00 +0000 (21:20 +0000)
committerJeff Law <law@gcc.gnu.org>
Mon, 27 Jul 1998 21:20:00 +0000 (15:20 -0600)
From-SVN: r21423

gcc/ChangeLog
gcc/config/pa/pa.c

index 964849e1c3c7a9bae2268fa5bcd76ae37de3d6c2..28fdf7701b68eab8d24e3c1e0c750154f3d62081 100644 (file)
@@ -1,3 +1,7 @@
+Mon Jul 27 22:18:36 1998  Jeffrey A Law  (law@cygnus.com)
+
+       * pa.c (move_operand): Accept CONSTANT_P_RTX.
+
 Mon Jul 27 17:18:52 1998  Dave Brolley  <brolley@cygnus.com>
 
        * stor-layout.c (layout_type): Handle arrays of bits, for Chill.
index 1100e29dd2acb62384323d274f5f5302ebdcf748..c3395cf088c056ad4331895894d8c7a719c09faf 100644 (file)
@@ -288,6 +288,9 @@ move_operand (op, mode)
   if (register_operand (op, mode))
     return 1;
 
+  if (GET_CODE (op) == CONSTANT_P_RTX)
+    return 1;
+
   if (GET_CODE (op) == CONST_INT)
     return cint_ok_for_move (INTVAL (op));