1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-23 20:15:19 -07:00

Force inline

This commit is contained in:
Frank Denis 2017-09-15 00:06:37 +02:00
parent 5cc334b33c
commit dcd60ba661

View File

@ -6,7 +6,7 @@
#define ror64(x, n) _mm512_ror_epi64((x), (n))
static __m512i
static inline __m512i
muladd(__m512i x, __m512i y)
{
__m512i z = _mm512_mul_epu32(x, y);