diff options
| author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-19 13:16:31 +0000 |
|---|---|---|
| committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-19 13:16:31 +0000 |
| commit | 6bd5bfbf20d8b5ad2ec63ddc1d23f932fc26c4c7 (patch) | |
| tree | 7b7aef1cab171c1a6d646a7b8f839168dfcfdecf | |
| parent | 10abe56a43e0f0905404af3900dd268c37dff2eb (diff) | |
| download | ppe42-gcc-6bd5bfbf20d8b5ad2ec63ddc1d23f932fc26c4c7.tar.gz ppe42-gcc-6bd5bfbf20d8b5ad2ec63ddc1d23f932fc26c4c7.zip | |
2003-06-19 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/spe.md ("spe_evfscfsi"): Change operand types.
Change "fix" to "float".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68195 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/rs6000/spe.md | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c8a2a7d4dac..f95ec7aeb4d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-06-19 Aldy Hernandez <aldyh@redhat.com> + + * config/rs6000/spe.md ("spe_evfscfsi"): Change operand types. + Change "fix" to "float". + 2003-06-19 Andreas Jaeger <aj@suse.de> * c-tree.h: Remove declaration of poplevel. diff --git a/gcc/config/rs6000/spe.md b/gcc/config/rs6000/spe.md index c2ee1198a6d..82ab17be127 100644 --- a/gcc/config/rs6000/spe.md +++ b/gcc/config/rs6000/spe.md @@ -639,8 +639,8 @@ (set_attr "length" "4")]) (define_insn "spe_evfscfsi" - [(set (match_operand:V2SI 0 "gpc_reg_operand" "=r") - (fix:V2SI (match_operand:V2SF 1 "gpc_reg_operand" "r")))] + [(set (match_operand:V2SF 0 "gpc_reg_operand" "=r") + (float:V2SF (match_operand:V2SI 1 "gpc_reg_operand" "r")))] "TARGET_SPE" "evfscfsi %0,%1" [(set_attr "type" "vecfloat") |

