@@ -3945,7 +3945,7 @@ static __inline__ void __DEFAULT_FN_ATTRS _mm_storel_epi64(__m128i_u *__p,
3945
3945
/// A pointer to the 128-bit aligned memory location used to store the value.
3946
3946
/// \param __a
3947
3947
/// A vector of [2 x double] containing the 64-bit values to be stored.
3948
- static __inline__ void __DEFAULT_FN_ATTRS _mm_stream_pd (double * __p ,
3948
+ static __inline__ void __DEFAULT_FN_ATTRS _mm_stream_pd (void * __p ,
3949
3949
__m128d __a ) {
3950
3950
__builtin_nontemporal_store ((__v2df )__a , (__v2df * )__p );
3951
3951
}
@@ -3963,7 +3963,7 @@ static __inline__ void __DEFAULT_FN_ATTRS _mm_stream_pd(double *__p,
3963
3963
/// A pointer to the 128-bit aligned memory location used to store the value.
3964
3964
/// \param __a
3965
3965
/// A 128-bit integer vector containing the values to be stored.
3966
- static __inline__ void __DEFAULT_FN_ATTRS _mm_stream_si128 (__m128i * __p ,
3966
+ static __inline__ void __DEFAULT_FN_ATTRS _mm_stream_si128 (void * __p ,
3967
3967
__m128i __a ) {
3968
3968
__builtin_nontemporal_store ((__v2di )__a , (__v2di * )__p );
3969
3969
}
@@ -3983,8 +3983,8 @@ static __inline__ void __DEFAULT_FN_ATTRS _mm_stream_si128(__m128i *__p,
3983
3983
/// A 32-bit integer containing the value to be stored.
3984
3984
static __inline__ void
3985
3985
__attribute__((__always_inline__ , __nodebug__ , __target__ ("sse2" )))
3986
- _mm_stream_si32 (int * __p , int __a ) {
3987
- __builtin_ia32_movnti (__p , __a );
3986
+ _mm_stream_si32 (void * __p , int __a ) {
3987
+ __builtin_ia32_movnti (( int * ) __p , __a );
3988
3988
}
3989
3989
3990
3990
#ifdef __x86_64__
@@ -4003,8 +4003,8 @@ static __inline__ void
4003
4003
/// A 64-bit integer containing the value to be stored.
4004
4004
static __inline__ void
4005
4005
__attribute__((__always_inline__ , __nodebug__ , __target__ ("sse2" )))
4006
- _mm_stream_si64 (long long * __p , long long __a ) {
4007
- __builtin_ia32_movnti64 (__p , __a );
4006
+ _mm_stream_si64 (void * __p , long long __a ) {
4007
+ __builtin_ia32_movnti64 (( long long * ) __p , __a );
4008
4008
}
4009
4009
#endif
4010
4010
0 commit comments