]> granicus.if.org Git - clang/commitdiff
Fix the signatures for the _mm256_storeu2_* intrinsics.
authorChad Rosier <mcrosier@apple.com>
Thu, 12 Apr 2012 16:29:08 +0000 (16:29 +0000)
committerChad Rosier <mcrosier@apple.com>
Thu, 12 Apr 2012 16:29:08 +0000 (16:29 +0000)
PR12532

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

lib/Headers/avxintrin.h

index 3fb1b1541af0d12599e203d8bdb02d540e4b5d48..7a0ec3fbd63613520577297e4fe886fe05d5506c 100644 (file)
@@ -1202,7 +1202,7 @@ _mm256_loadu2_m128i(__m128i const *addr_hi, __m128i const *addr_lo)
 
 /* SIMD store ops (unaligned) */
 static __inline void __attribute__((__always_inline__, __nodebug__))
-_mm256_storeu2_m128(float const *addr_hi, float const *addr_lo, __m256 a)
+_mm256_storeu2_m128(float *addr_hi, float *addr_lo, __m256 a)
 {
   __m128 v128;
 
@@ -1213,7 +1213,7 @@ _mm256_storeu2_m128(float const *addr_hi, float const *addr_lo, __m256 a)
 }
 
 static __inline void __attribute__((__always_inline__, __nodebug__))
-_mm256_storeu2_m128d(double const *addr_hi, double const *addr_lo, __m256d a)
+_mm256_storeu2_m128d(double *addr_hi, double *addr_lo, __m256d a)
 {
   __m128d v128;
 
@@ -1224,7 +1224,7 @@ _mm256_storeu2_m128d(double const *addr_hi, double const *addr_lo, __m256d a)
 }
 
 static __inline void __attribute__((__always_inline__, __nodebug__))
-_mm256_storeu2_m128i(__m128i const *addr_hi, __m128i const *addr_lo, __m256i a)
+_mm256_storeu2_m128i(__m128i *addr_hi, __m128i *addr_lo, __m256i a)
 {
   __m128i v128;