projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31e9c6e
)
* pa.c (move_operand): Accept CONSTANT_P_RTX.
author
Jeffrey A Law
<law@cygnus.com>
Mon, 27 Jul 1998 21:20:00 +0000
(21:20 +0000)
committer
Jeff Law
<law@gcc.gnu.org>
Mon, 27 Jul 1998 21:20:00 +0000
(15:20 -0600)
From-SVN: r21423
gcc/ChangeLog
patch
|
blob
|
history
gcc/config/pa/pa.c
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index 964849e1c3c7a9bae2268fa5bcd76ae37de3d6c2..28fdf7701b68eab8d24e3c1e0c750154f3d62081 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-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.
diff --git
a/gcc/config/pa/pa.c
b/gcc/config/pa/pa.c
index 1100e29dd2acb62384323d274f5f5302ebdcf748..c3395cf088c056ad4331895894d8c7a719c09faf 100644
(file)
--- a/
gcc/config/pa/pa.c
+++ b/
gcc/config/pa/pa.c
@@
-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));