diff options
author | Jie Zhang <jie.zhang@analog.com> | 2007-08-29 09:34:15 +0000 |
---|---|---|
committer | Jie Zhang <jiez@gcc.gnu.org> | 2007-08-29 09:34:15 +0000 |
commit | cc728da9c5b5311afc24b51845b893aeb8466bd0 (patch) | |
tree | b8ee742b972b6b8928531d910f1edbb7aa5c4923 /gcc/config | |
parent | 935cb9ac0f5d694467bf5c51d46339f13e6db5d4 (diff) | |
download | gcc-cc728da9c5b5311afc24b51845b893aeb8466bd0.zip gcc-cc728da9c5b5311afc24b51845b893aeb8466bd0.tar.gz gcc-cc728da9c5b5311afc24b51845b893aeb8466bd0.tar.bz2 |
revert: bfin.md (composev2hi): Put operands into vector with correct order.
Revert
2007-08-29 Jie Zhang <jie.zhang@analog.com>
* config/bfin/bfin.md (composev2hi): Put operands into vector
with correct order.
From-SVN: r127890
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/bfin/bfin.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/bfin/bfin.md b/gcc/config/bfin/bfin.md index 7c919b7..e465cd5 100644 --- a/gcc/config/bfin/bfin.md +++ b/gcc/config/bfin/bfin.md @@ -2831,16 +2831,16 @@ (match_operand:HI 1 "register_operand" "d,d")))] "" "@ - %d0 = %h1 << 0%! + %d0 = %h2 << 0%! #" "reload_completed" [(set (match_dup 0) (vec_concat:V2HI (vec_select:HI (match_dup 0) (parallel [(const_int 0)])) - (match_dup 1))) + (match_dup 2))) (set (match_dup 0) (vec_concat:V2HI - (match_dup 2) + (match_dup 1) (vec_select:HI (match_dup 0) (parallel [(const_int 1)]))))] "" [(set_attr "type" "dsp32")]) |