diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2010-04-21 15:27:02 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2010-04-21 15:27:02 +0200 |
commit | 656ef6bb35289922b2b58f98596df250c9a9e1fc (patch) | |
tree | f6fd2466da9457414a349d31174d62e6ed328010 /gcc | |
parent | 78db7d92ced4e201e72826fb2f438517c8cf8aff (diff) | |
download | gcc-656ef6bb35289922b2b58f98596df250c9a9e1fc.zip gcc-656ef6bb35289922b2b58f98596df250c9a9e1fc.tar.gz gcc-656ef6bb35289922b2b58f98596df250c9a9e1fc.tar.bz2 |
i386.md (x86_shrd): Add athlon_decode and amdfam10_decode attributes.
* config/i386/i386.md (x86_shrd): Add athlon_decode and
amdfam10_decode attributes.
From-SVN: r158596
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 66c7065..be5f918 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-04-21 Uros Bizjak <ubizjak@gmail.com> + + * config/i386/i386.md (x86_shrd): Add athlon_decode and + amdfam10_decode attributes. + 2010-04-21 Jakub Jelinek <jakub@redhat.com> PR middle-end/43570 diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index eb0588d..1e06ca0 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -10319,8 +10319,10 @@ "shrd{l}\t{%s2%1, %0|%0, %1, %2}" [(set_attr "type" "ishift") (set_attr "prefix_0f" "1") + (set_attr "mode" "SI") (set_attr "pent_pair" "np") - (set_attr "mode" "SI")]) + (set_attr "athlon_decode" "vector") + (set_attr "amdfam10_decode" "vector")]) (define_insn "ashrdi3_cvt" [(set (match_operand:DI 0 "nonimmediate_operand" "=*d,rm") |