diff options
| author | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-12 12:22:25 +0000 |
|---|---|---|
| committer | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-12 12:22:25 +0000 |
| commit | aff2d721e85cbb86c21907e8fa32c8e2772f06b5 (patch) | |
| tree | 032f5514f2f5d60e652a2aa87637e15e609a2646 | |
| parent | 4895e6ccb8ace4a8edca76c04ecaa91f6246dc24 (diff) | |
| download | ppe42-gcc-aff2d721e85cbb86c21907e8fa32c8e2772f06b5.tar.gz ppe42-gcc-aff2d721e85cbb86c21907e8fa32c8e2772f06b5.zip | |
PR target/19389
* config/rs6000/rs6000.md (movtf_internal): Replace r->o and m->r
with r->Y and Y->r.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@93224 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config/rs6000/rs6000.md | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d30899341f0..d666e251328 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-01-12 Alan Modra <amodra@bigpond.net.au> + + PR target/19389 + * config/rs6000/rs6000.md (movtf_internal): Replace r->o and m->r + with r->Y and Y->r. + 2005-01-12 Nick Clifton <nickc@redhat.com> * config/iq2000/iq2000.h (ASM_SPEC): Undefine (to stop -Qy being diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index c5b1dcdf21f..e3ba0211a78 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -1,6 +1,6 @@ ;; Machine description for IBM RISC System 6000 (POWER) for GNU C compiler ;; Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, -;; 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +;; 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ;; Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu) ;; This file is part of GCC. @@ -8234,10 +8234,10 @@ ; It's important to list the o->f and f->o moves before f->f because ; otherwise reload, given m->f, will try to pick f->f and reload it, -; which doesn't make progress. Likewise r->o<> must be before r->r. +; which doesn't make progress. Likewise r->Y must be before r->r. (define_insn_and_split "*movtf_internal" - [(set (match_operand:TF 0 "nonimmediate_operand" "=o,f,f,r,o<>,r") - (match_operand:TF 1 "input_operand" "f,o,f,mGHF,r,r"))] + [(set (match_operand:TF 0 "nonimmediate_operand" "=o,f,f,r,Y,r") + (match_operand:TF 1 "input_operand" "f,o,f,YGHF,r,r"))] "(DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_DARWIN) && TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_LONG_DOUBLE_128 && (gpc_reg_operand (operands[0], TFmode) |

