Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mmintrin.h: error: cannot initialize a parameter ... #1042

Closed
Danvil opened this issue Jan 22, 2022 · 2 comments · Fixed by #1115
Closed

mmintrin.h: error: cannot initialize a parameter ... #1042

Danvil opened this issue Jan 22, 2022 · 2 comments · Fixed by #1115

Comments

@Danvil
Copy link

Danvil commented Jan 22, 2022

Hello,

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.

@Danvil Danvil changed the title mmintrin.h): error: cannot initialize a parameter ... mmintrin.h: error: cannot initialize a parameter ... Jan 22, 2022
@bjosv
Copy link
Contributor

bjosv commented Jan 27, 2022

This looks like the same issue as in KjellKod/g3log/issues/282.

hiredis have a disabling of __attribute__(x) in sds.h for MS C/C++ compilers, which seems needed by <future>.

@michael-grunder
Copy link
Collaborator

@Danvil feel free to reopen if #1115 didn't fix the issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants