diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-04-12 16:29:08 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-04-12 16:29:08 +0000 |
commit | 41a7e89183116ea89c71d78564a4a7fd7712c0f6 (patch) | |
tree | 1b8767f3e0aede399c2c57c9cc0c1cc0e761b1fe | |
parent | 9bc0c290a79a6aca46367626e3463077147e7e76 (diff) |
Fix the signatures for the _mm256_storeu2_* intrinsics.
PR12532
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154591 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Headers/avxintrin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Headers/avxintrin.h b/lib/Headers/avxintrin.h index 3fb1b1541a..7a0ec3fbd6 100644 --- a/lib/Headers/avxintrin.h +++ b/lib/Headers/avxintrin.h @@ -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; |