summaryrefslogtreecommitdiff
path: root/TestPrograms/test_asimd.cxx
blob: 2940bb4be1417a041153a0806070889ee450161d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <arm_neon.h>
#include <stdint.h>

// This is how config.h includes it.
#if defined(__aarch32__) || defined(__aarch64__) || (__ARM_ARCH >= 8) || defined(__ARM_ACLE)
# if !defined(__ANDROID__) && !defined(ANDROID) && !defined(__APPLE__)
#  include <arm_acle.h>
# endif
#endif

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