summaryrefslogtreecommitdiff
path: root/TestPrograms/test_arm_asimd.cxx
blob: 2a150e1047cfc56b40f5457c471e527f48ddb3e6 (plain)
1
2
3
4
5
6
7
8
9
10
#include <arm_neon.h>
#include <arm_acle.h>
#include <stdint.h>

int main(int argc, char* argv[])
{
	uint32x4_t x={0};
	x=veorq_u32(x,x);
	return 0;
}