sh.c (prepare_move_operands): Only call target_reg_operand if TARGET_SHMEDIA.

2002-08-08  Stephen Clarke <stephen.clarke@superh.com>

	* config/sh/sh.c (prepare_move_operands): Only call
	target_reg_operand if TARGET_SHMEDIA.

From-SVN: r56139
This commit is contained in:
Stephen Clarke 2002-08-08 21:57:52 +00:00 committed by Joern Rennecke
parent a6f5b2d3eb
commit 5615d8fd50
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-08-08 Stephen Clarke <stephen.clarke@superh.com>
* config/sh/sh.c (prepare_move_operands): Only call
target_reg_operand if TARGET_SHMEDIA.
2002-08-08 Jakub Jelinek <jakub@redhat.com>
* config/rs6000/rs6000.h, config/rs6000/aix.h,

View File

@ -692,7 +692,8 @@ prepare_move_operands (operands, mode)
{
if (GET_CODE (operands[0]) == MEM)
operands[1] = force_reg (Pmode, operands[1]);
else if (GET_CODE (operands[1]) == LABEL_REF
else if (TARGET_SHMEDIA
&& GET_CODE (operands[1]) == LABEL_REF
&& target_reg_operand (operands[0], mode))
/* It's ok. */;
else