diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-08-20 19:16:06 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-08-20 19:16:06 -0400 |
| commit | c0bd2eb3987698ee9b91f6b7ef6eb85526749ed4 (patch) | |
| tree | b44defd52e2699f84f8abad9d51b6b2485089ec6 /lib/include/emmintrin.h | |
| parent | 5f3d59f0ac78e01bd50419dab54d7fcbae15f17c (diff) | |
| download | zig-c0bd2eb3987698ee9b91f6b7ef6eb85526749ed4.tar.gz zig-c0bd2eb3987698ee9b91f6b7ef6eb85526749ed4.zip | |
update C headers to clang 9.0.0-rc2
upstream commit 67a4a12d61bfb10b2410b53c5a43ef9b4a03de7d
Diffstat (limited to 'lib/include/emmintrin.h')
| -rw-r--r-- | lib/include/emmintrin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/include/emmintrin.h b/lib/include/emmintrin.h index 3d55f5f271..c8fefdfc79 100644 --- a/lib/include/emmintrin.h +++ b/lib/include/emmintrin.h @@ -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; |
