diff options
author | Carl Love <carll@us.ibm.com> | 2020-04-22 11:57:53 -0500 |
---|---|---|
committer | Carl Love <carll@us.ibm.com> | 2020-04-30 13:31:29 -0500 |
commit | 870b7834f068ef6fd11970491548aef27760dcde (patch) | |
tree | 5145541e7d5cf48a4006beb5d5266f22f1ecd41b /gcc | |
parent | 4bc0bb440ea178dd20f173a94bf186939a89d99f (diff) | |
download | gcc-870b7834f068ef6fd11970491548aef27760dcde.zip gcc-870b7834f068ef6fd11970491548aef27760dcde.tar.gz gcc-870b7834f068ef6fd11970491548aef27760dcde.tar.bz2 |
rs6000, Fix header comment for intrinsic function _mm_movemask_epi8
gcc/ChangeLog
2020-04-30 Carl Love <cel@us.ibm.com>
* config/rs6000/emmintrin.h (_mm_movemask_epi8): Fix comment.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/emmintrin.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 69ecd22..def7f34 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2020-04-30 Carl Love <cel@us.ibm.com> + + * config/rs6000/emmintrin.h (_mm_movemask_epi8): Fix comment. + 2020-04-30 Martin Jambor <mjambor@suse.cz> PR ipa/94856 diff --git a/gcc/config/rs6000/emmintrin.h b/gcc/config/rs6000/emmintrin.h index 2462cf5..b957c1b 100644 --- a/gcc/config/rs6000/emmintrin.h +++ b/gcc/config/rs6000/emmintrin.h @@ -2033,7 +2033,8 @@ _mm_min_epu8 (__m128i __A, __m128i __B) #ifdef _ARCH_PWR8 /* Intrinsic functions that require PowerISA 2.07 minimum. */ -/* Creates a 4-bit mask from the most significant bits of the SPFP values. */ +/* Return a mask created from the most significant bit of each 8-bit + element in A. */ extern __inline int __attribute__((__gnu_inline__, __always_inline__, __artificial__)) _mm_movemask_epi8 (__m128i __A) { |