mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 18:09:48 +00:00
8 lines
147 B
C++
8 lines
147 B
C++
#include <immintrin.h>
|
|
int main(int argc, char* argv[])
|
|
{
|
|
__m256d x = _mm256_setzero_pd();
|
|
x=_mm256_addsub_pd(x,x);
|
|
return 0;
|
|
}
|