diff options
Diffstat (limited to 'TestPrograms/test_arm_asimd.cxx')
-rw-r--r-- | TestPrograms/test_arm_asimd.cxx | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/TestPrograms/test_arm_asimd.cxx b/TestPrograms/test_arm_asimd.cxx index 3037b769..e5e46f84 100644 --- a/TestPrograms/test_arm_asimd.cxx +++ b/TestPrograms/test_arm_asimd.cxx @@ -1,16 +1,16 @@ -#include <arm_neon.h> -#include <stdint.h> - -// test_acle.h determines if this is available. Then, -// -DCRYPTOPP_ARM_ACLE_AVAILABLE=0 is added to CXXFLAGS -// if the ACLE header is not available. -#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; -} +#include <arm_neon.h>
+#include <stdint.h>
+
+// test_acle.h determines if this is available. Then,
+// -DCRYPTOPP_ARM_ACLE_AVAILABLE=0 is added to CXXFLAGS
+// if the ACLE header is not available.
+#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;
+}
|