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