diff options
| author | jiez <jiez@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-29 09:17:37 +0000 |
|---|---|---|
| committer | jiez <jiez@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-29 09:17:37 +0000 |
| commit | 230658a4beea3f00a40a600a14544fbadf81a13c (patch) | |
| tree | 0add0f8dd2b8d2294cc1d2de3624572160d5388e | |
| parent | fc8aef7f860c42a43edd7115eef3e06e7d5b3aee (diff) | |
| download | ppe42-gcc-230658a4beea3f00a40a600a14544fbadf81a13c.tar.gz ppe42-gcc-230658a4beea3f00a40a600a14544fbadf81a13c.zip | |
* config/bfin/bfin.md (composev2hi): Put operands into vector
with correct order.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127888 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/bfin/bfin.md | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e4e1bd9f434..ceae94e27ac 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2007-08-29 Jie Zhang <jie.zhang@analog.com> + * config/bfin/bfin.md (composev2hi): Put operands into vector + with correct order. + +2007-08-29 Jie Zhang <jie.zhang@analog.com> + * config/bfin/bfin.c (bfin_expand_call): Inline PLT with l1_text attribute when appropriate. (bfin_handle_l1_text_attribute): New. diff --git a/gcc/config/bfin/bfin.md b/gcc/config/bfin/bfin.md index e465cd54e0b..7c919b7441f 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 = %h2 << 0%! + %d0 = %h1 << 0%! #" "reload_completed" [(set (match_dup 0) (vec_concat:V2HI (vec_select:HI (match_dup 0) (parallel [(const_int 0)])) - (match_dup 2))) + (match_dup 1))) (set (match_dup 0) (vec_concat:V2HI - (match_dup 1) + (match_dup 2) (vec_select:HI (match_dup 0) (parallel [(const_int 1)]))))] "" [(set_attr "type" "dsp32")]) |

