* pa.c (move_operand): Accept CONSTANT_P_RTX.

From-SVN: r21423
This commit is contained in:
Jeffrey A Law 1998-07-27 21:20:00 +00:00 committed by Jeff Law
parent 31e9c6ed12
commit 198f32a6e4
2 changed files with 7 additions and 0 deletions

View 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.

View 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));