1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-07-29 18:42:26 -04:00
sdrangel/cmake/test/test_x86_avx2.cxx
Davide Gerhard 6e80780d17
cmake: windows fixes for MSVC
- disable sdrangelbench on windows with MSVC
- fix cpu flags test code for MSVC
- add ico file
2019-05-28 15:19:12 +02:00

16 lines
279 B
C++

#include <signal.h>
#include <stdlib.h>
#include <immintrin.h>
void signalHandler(int signum) {
exit(signum); // SIGILL = 4
}
int main(int argc, char* argv[])
{
signal(SIGILL, signalHandler);
__m256i x = _mm256_setzero_si256();
x=_mm256_add_epi64 (x,x);
return 0;
}