diff options
| author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-08 21:57:52 +0000 |
|---|---|---|
| committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-08 21:57:52 +0000 |
| commit | afef654082f51140e7bdb7406e5c2c6129e3fb21 (patch) | |
| tree | 070d539ddeb2994006421f7536e23338ae72a793 /gcc | |
| parent | 3e3851a1f4675aa6214882d10b70b70083ca159f (diff) | |
| download | ppe42-gcc-afef654082f51140e7bdb7406e5c2c6129e3fb21.tar.gz ppe42-gcc-afef654082f51140e7bdb7406e5c2c6129e3fb21.zip | |
2002-08-08 Stephen Clarke <stephen.clarke@superh.com>
* config/sh/sh.c (prepare_move_operands): Only call
target_reg_operand if TARGET_SHMEDIA.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56139 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/sh/sh.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 596f5ab694f..fa7430eeedf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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, diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index d727a678638..ad9ac7d4c4f 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -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 |

