mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
12 lines
189 B
C++
12 lines
189 B
C++
#include <stdint.h>
|
|
#ifdef CRYPTOPP_ARM_NEON_HEADER
|
|
# include <arm_neon.h>
|
|
#endif
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
uint32x4_t x={0};
|
|
x=veorq_u32(x,x);
|
|
return 0;
|
|
}
|