mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-24 16:49:28 +08:00
* pa.c (move_operand): Accept CONSTANT_P_RTX.
From-SVN: r21423
This commit is contained in:
parent
31e9c6ed12
commit
198f32a6e4
@ -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.
|
||||
|
@ -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));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user