diff options
author | liuhongt <hongtao.liu@intel.com> | 2021-06-30 17:10:44 +0800 |
---|---|---|
committer | liuhongt <hongtao.liu@intel.com> | 2021-07-02 12:47:34 +0800 |
commit | 73494401241b183ca188954a035734fcc53d97de (patch) | |
tree | bd087470becc299e793c2a917c1f9ef313c18a76 /gcc | |
parent | bea7c16a467cd1278375df261e4bc1d2d6e48d3b (diff) | |
download | gcc-73494401241b183ca188954a035734fcc53d97de.zip gcc-73494401241b183ca188954a035734fcc53d97de.tar.gz gcc-73494401241b183ca188954a035734fcc53d97de.tar.bz2 |
Fix typo in standard pattern name of trunc<mode><pmov_dst_4>2.
gcc/ChangeLog
* config/i386/sse.md (trunc<mode><pmov_dst_4>2): Refined to ..
(trunc<mode><pmov_dst_4_lower>2): this.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/sse.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index f0b450a..bcf1605 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -11199,12 +11199,14 @@ (define_mode_iterator PMOV_SRC_MODE_4 [V4DI V2DI V4SI]) (define_mode_attr pmov_dst_4 [(V4DI "V4HI") (V2DI "V2HI") (V4SI "V4HI")]) +(define_mode_attr pmov_dst_4_lower + [(V4DI "v4hi") (V2DI "v2hi") (V4SI "v4hi")]) (define_mode_attr pmov_dst_zeroed_4 [(V4DI "V4HI") (V2DI "V6HI") (V4SI "V4HI")]) (define_mode_attr pmov_suff_4 [(V4DI "qw") (V2DI "qw") (V4SI "dw")]) -(define_expand "trunc<mode><pmov_dst_4>2" +(define_expand "trunc<mode><pmov_dst_4_lower>2" [(set (match_operand:<pmov_dst_4> 0 "register_operand") (truncate:<pmov_dst_4> (match_operand:PMOV_SRC_MODE_4 1 "register_operand")))] |