diff options
| author | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-15 16:29:54 +0000 |
|---|---|---|
| committer | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-15 16:29:54 +0000 |
| commit | 2bb8b67b07459ac8f4406655eec88055dcdaba54 (patch) | |
| tree | cb9ac4b29f8623c11d1a0990e1fb6a369197b622 | |
| parent | d960da4200c82afeac3971533607d0b30ab72a7d (diff) | |
| download | ppe42-gcc-2bb8b67b07459ac8f4406655eec88055dcdaba54.tar.gz ppe42-gcc-2bb8b67b07459ac8f4406655eec88055dcdaba54.zip | |
* config/ia64/ia64.md (*movtf_internal): Use destination_operand
instead of nonimmediate_operand.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90675 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/ia64/ia64.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0eeffd5303e..b418029ef28 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-11-15 Steve Ellcey <sje@cup.hp.com> + + * config/ia64/ia64.md (*movtf_internal): Use destination_operand + instead of nonimmediate_operand. + 2004-11-15 Mark Mitchell <mark@codesourcery.com> * config/i386/sol2.h (ASM_OUTPUT_CALL): Use print_operand. diff --git a/gcc/config/ia64/ia64.md b/gcc/config/ia64/ia64.md index 4a01ba4d904..b32041c0928 100644 --- a/gcc/config/ia64/ia64.md +++ b/gcc/config/ia64/ia64.md @@ -1137,7 +1137,7 @@ }) (define_insn_and_split "*movtf_internal" - [(set (match_operand:TF 0 "nonimmediate_operand" "=r,r,m") + [(set (match_operand:TF 0 "destination_operand" "=r,r,m") (match_operand:TF 1 "general_operand" "ri,m,r"))] "ia64_move_ok (operands[0], operands[1])" "#" |

