]> granicus.if.org Git - clang/commitdiff
Merging r366699:
authorHans Wennborg <hans@hanshq.net>
Mon, 22 Jul 2019 17:56:32 +0000 (17:56 +0000)
committerHans Wennborg <hans@hanshq.net>
Mon, 22 Jul 2019 17:56:32 +0000 (17:56 +0000)
------------------------------------------------------------------------
r366699 | probinson | 2019-07-22 18:14:09 +0200 (Mon, 22 Jul 2019) | 1 line

[X86] Remove const from some intrinsics that shouldn't have them
------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_90@366711 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Headers/emmintrin.h

index 3d55f5f2710fab68325aa9f4835b900acac7dcb7..c8fefdfc792a153c138368cec276cb72ab0c4748 100644 (file)
@@ -4029,7 +4029,7 @@ _mm_storeu_si128(__m128i_u *__p, __m128i __b)
 /// \param __b
 ///    A 128-bit integer vector containing the value to be stored.
 static __inline__ void __DEFAULT_FN_ATTRS
-_mm_storeu_si64(void const *__p, __m128i __b)
+_mm_storeu_si64(void *__p, __m128i __b)
 {
   struct __storeu_si64 {
     long long __v;
@@ -4050,7 +4050,7 @@ _mm_storeu_si64(void const *__p, __m128i __b)
 /// \param __b
 ///    A 128-bit integer vector containing the value to be stored.
 static __inline__ void __DEFAULT_FN_ATTRS
-_mm_storeu_si32(void const *__p, __m128i __b)
+_mm_storeu_si32(void *__p, __m128i __b)
 {
   struct __storeu_si32 {
     int __v;
@@ -4071,7 +4071,7 @@ _mm_storeu_si32(void const *__p, __m128i __b)
 /// \param __b
 ///    A 128-bit integer vector containing the value to be stored.
 static __inline__ void __DEFAULT_FN_ATTRS
-_mm_storeu_si16(void const *__p, __m128i __b)
+_mm_storeu_si16(void *__p, __m128i __b)
 {
   struct __storeu_si16 {
     short __v;