summaryrefslogtreecommitdiff
path: root/TestPrograms/test_neon.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'TestPrograms/test_neon.cxx')
-rw-r--r--TestPrograms/test_neon.cxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/TestPrograms/test_neon.cxx b/TestPrograms/test_neon.cxx
new file mode 100644
index 00000000..7e293633
--- /dev/null
+++ b/TestPrograms/test_neon.cxx
@@ -0,0 +1,13 @@
+#include <arm_neon.h>
+#include <stdint.h>
+
+#if (CRYPTOPP_ARM_ACLE_AVAILABLE)
+# include <arm_acle.h>
+#endif
+
+int main(int argc, char* argv[])
+{
+ uint32x4_t x;
+ x=veorq_u32(x,x);
+ return 0;
+}