diff options
author | Olga Makhotina <olga.makhotina@intel.com> | 2018-02-12 05:45:38 +0000 |
---|---|---|
committer | Kirill Yukhin <kyukhin@gcc.gnu.org> | 2018-02-12 05:45:38 +0000 |
commit | ba43b9fadd8b064023ab172db5a6e73027c8be44 (patch) | |
tree | 05bae8a60d512b8201222df579b60f10eebb342f | |
parent | b10bc0d6f9d5e281465c6f8d4197f3158e46e093 (diff) | |
download | gcc-ba43b9fadd8b064023ab172db5a6e73027c8be44.zip gcc-ba43b9fadd8b064023ab172db5a6e73027c8be44.tar.gz gcc-ba43b9fadd8b064023ab172db5a6e73027c8be44.tar.bz2 |
Add missing ChangeLog entry for previous patch.
From-SVN: r257577
-rw-r--r-- | gcc/ChangeLog | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e9d794e..ac1803e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,29 @@ +2018-02-12 Olga Makhotina <olga.makhotina@intel.com> + + * config/i386/avx512fintrin.h (_mm_mask_sqrt_round_sd) + (_mm_maskz_sqrt_round_sd, _mm_mask_sqrt_round_ss) + (_mm_maskz_sqrt_round_ss): New intrinsics. + (__builtin_ia32_sqrtsd_round, __builtin_ia32_sqrtss_round): Remove. + (__builtin_ia32_sqrtsd_mask_round) + (__builtin_ia32_sqrtss_mask_round): New builtins. + * config/i386/i386-builtin.def (__builtin_ia32_sqrtsd_round) + (__builtin_ia32_sqrtss_round): Remove. + (__builtin_ia32_sqrtsd_mask_round) + (__builtin_ia32_sqrtss_mask_round): New builtins. + * config/i386/sse.md (vmsqrt<mode>2<round_name>): Renamed to ... + (vmsqrt<mode>2<mask_scalar_name><round_scalar_name>): ... this. + ((match_operand:VF_128 1 "vector_operand" + "xBm,<round_constraint>")): Changed to ... + ((match_operand:VF_128 1 "vector_operand" + "xBm,<round_scalar_constraint>")): ... this. + (vsqrt<ssescalarmodesuffix>\t{<round_op3>%1, %2, %0| + %0, %2, %<iptr>1<round_op3>}): Changed to ... + (vsqrt<ssescalarmodesuffix>\t{<round_scalar_mask_op3>%1, %2, + %0<mask_scalar_operand3>|%0<mask_scalar_operand3>, %2, + %<iptr>1<round_scalar_mask_op3>}): ... this. + ((set_attr "prefix" "<round_prefix>")): Changed to ... + ((set_attr "prefix" "<round_scalar_prefix>")): ... this. + 2018-02-11 Steven Munroe <munroesj@gcc.gnu.org> PR target/84266 |