diff options
author | Jim Wilson <wilson@redhat.com> | 2002-11-27 20:58:37 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2002-11-27 20:58:37 +0000 |
commit | c9b93e1a3287e51f3271e8210e49ef07620c7ef5 (patch) | |
tree | d37cae0702a9d1e6b437405072d5b137b0dd2bc9 | |
parent | 21b3d0ba2b0f3871a2c889d91b187ae9ab13cca9 (diff) | |
download | gcc-c9b93e1a3287e51f3271e8210e49ef07620c7ef5.zip gcc-c9b93e1a3287e51f3271e8210e49ef07620c7ef5.tar.gz gcc-c9b93e1a3287e51f3271e8210e49ef07620c7ef5.tar.bz2 |
spe.md (spu_evsplatfi, [...]): Swap operands in output template.
2002-11-22 Jim Wilson <wilson@redhat.com>
* config/rs6000/spe.md (spu_evsplatfi, spu_evsplati): Swap operands
in output template.
From-SVN: r59584
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/spe.md | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0405ac3..fd733e4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-11-27 Jim Wilson <wilson@redhat.com> + + * config/rs6000/spe.md (spu_evsplatfi, spu_evsplati): Swap operands + in output template. + 2002-11-27 Casper S. Hornstrup <chorns@users.sourceforge.net> * config/i386/i386.h (DLL_IMPORT_EXPORT_PREFIX): Define. diff --git a/gcc/config/rs6000/spe.md b/gcc/config/rs6000/spe.md index e876e83..704cf78 100644 --- a/gcc/config/rs6000/spe.md +++ b/gcc/config/rs6000/spe.md @@ -1071,7 +1071,7 @@ (clobber (reg:SI SPEFSCR_REGNO)) (clobber (reg:V2SI SPE_ACC_REGNO))] "TARGET_SPE" - "evmhessiaaw %0,%1" + "evmhessiaaw %0,%1,%2" [(set_attr "type" "veccomplex") (set_attr "length" "4")]) @@ -1973,7 +1973,7 @@ [(set (match_operand:V2SI 0 "gpc_reg_operand" "=r") (unspec:V2SI [(match_operand:QI 1 "immediate_operand" "i")] 684))] "TARGET_SPE" - "evsplatfi %1,%0" + "evsplatfi %0,%1" [(set_attr "type" "vecperm") (set_attr "length" "4")]) @@ -1981,7 +1981,7 @@ [(set (match_operand:V2SI 0 "gpc_reg_operand" "=r") (unspec:V2SI [(match_operand:QI 1 "immediate_operand" "i")] 685))] "TARGET_SPE" - "evsplati %1,%0" + "evsplati %0,%1" [(set_attr "type" "vecperm") (set_attr "length" "4")]) |