You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a simple C++ program which includes hiredis.h header and then C++ <future> header:
#include "hiredis.h"
#include <future>
When I compile under windows with LLVM clang-cl.exe I get the following compiler errors:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\future:25:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.29.30133\include\ppltasks.h:27:
In file included from C:\Program Files\LLVM\lib\clang\11.0.0\include\intrin.h:20:
In file included from C:\Program Files\LLVM\lib\clang\11.0.0\include\x86intrin.h:15:
In file included from C:\Program Files\LLVM\lib\clang\11.0.0\include\immintrin.h:15:
C:\Program Files\LLVM\lib\clang\11.0.0\include\mmintrin.h(67,40): error: cannot initialize a parameter of type '__attribute__((__vector_size__(2 * sizeof(int)))) int' (vector of 2 'int' values) with an rvalue of type '__v2si' (aka 'int')
return __builtin_ia32_vec_ext_v2si((__v2si)__m, 0);
^~~~~~~~~~~
C:\Program Files\LLVM\lib\clang\11.0.0\include\mmintrin.h(129,43): error: cannot initialize a parameter of type '__attribute__((__vector_size__(4 * sizeof(short)))) short' (vector of 4 'short' values) with an rvalue of type '__v4hi' (aka 'short')
return (__m64)__builtin_ia32_packsswb((__v4hi)__m1, (__v4hi)__m2);
^~~~~~~~~~~~
an rvalue of type '__v2si' (aka 'int')
return (__m64)__builtin_ia32_packssdw((__v2si)__m1, (__v2si)__m2);
^~~~~~~~~~~~
C:\Program Files\LLVM\lib\clang\11.0.0\include\mmintrin.h(189,43): error: cannot initialize a parameter of type '__attribute__((__vector_size__(4 * sizeof(short)))) short' (vector of 4 'short' values) with an rvalue of type '__v4hi' (aka 'short')
return (__m64)__builtin_ia32_packuswb((__v4hi)__m1, (__v4hi)__m2);
^~~~~~~~~~~~
...
Interestingly enough if I first include <future> and then hiredis.h it compiles fine.
The text was updated successfully, but these errors were encountered:
Danvil
changed the title
mmintrin.h): error: cannot initialize a parameter ...
mmintrin.h: error: cannot initialize a parameter ...
Jan 22, 2022
Hello,
I have a simple C++ program which includes
hiredis.h
header and then C++<future>
header:When I compile under windows with LLVM clang-cl.exe I get the following compiler errors:
Interestingly enough if I first include
<future>
and thenhiredis.h
it compiles fine.The text was updated successfully, but these errors were encountered: