Supplement r259111 by also using correct casts in gcc's emmintrin.h for

the first argument of the following builtin function:

* __builtin_ia32_psrlqi128() takes __v2di instead of __v4si

This should fix the following errors when building the graphics/webp
port with base gcc:

lossless_sse2.c:403: error: incompatible type for argument 1 of '__builtin_ia32_psrlqi128'
lossless_sse2.c:404: error: incompatible type for argument 1 of '__builtin_ia32_psrlqi128'

Reported by:	Jos Chrispijn <ports@webrz.net>
MFC after:	3 days
This commit is contained in:
Dimitry Andric 2014-08-13 16:42:44 +00:00
parent f0396ad15e
commit 74346cb90d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=269948

View File

@ -1193,7 +1193,7 @@ _mm_srli_epi64 (__m128i __A, int __B)
#define _mm_srli_epi32(__A, __B) \
((__m128i)__builtin_ia32_psrldi128 ((__v4si)(__A), __B))
#define _mm_srli_epi64(__A, __B) \
((__m128i)__builtin_ia32_psrlqi128 ((__v4si)(__A), __B))
((__m128i)__builtin_ia32_psrlqi128 ((__v2di)(__A), __B))
#endif
static __inline __m128i __attribute__((__always_inline__))