diff options
author | ienkovich <ienkovich@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-04-20 11:47:13 +0000 |
---|---|---|
committer | ienkovich <ienkovich@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-04-20 11:47:13 +0000 |
commit | 7a6c8249b1d75fbedc28bebdc10f2f824149fe07 (patch) | |
tree | 6c7c404abb99dfe64f150cf15e419988c060b6ae | |
parent | 4fb48737f36b9cb431fd31d50a89458ee9369e0c (diff) | |
download | gcc-7a6c8249b1d75fbedc28bebdc10f2f824149fe07.tar.gz |
gcc/
* config/i386/sse.md (vec_unpacks_lo_hi): Always
use kmovw to support AVX512F target.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@235270 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/sse.md | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2cca3a216da..368feb99c8a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-04-20 Ilya Enkovich <ilya.enkovich@intel.com> + + * config/i386/sse.md (vec_unpacks_lo_hi): Always + use kmovw to support AVX512F target. + 2016-04-20 Bin Cheng <bin.cheng@arm.com> * tree-scalar-evolution.c (interpret_rhs_expr): Handle BIT_AND_EXPR. diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index 78c28c57db2..9a8446865f1 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -13233,9 +13233,9 @@ "ix86_expand_sse_unpack (operands[0], operands[1], true, false); DONE;") (define_expand "vec_unpacks_lo_hi" - [(set (match_operand:QI 0 "register_operand") - (subreg:QI (match_operand:HI 1 "register_operand") 0))] - "TARGET_AVX512DQ") + [(set (subreg:HI (match_operand:QI 0 "register_operand") 0) + (match_operand:HI 1 "register_operand"))] + "TARGET_AVX512F") (define_expand "vec_unpacks_lo_si" [(set (match_operand:HI 0 "register_operand") |