Only allow 64 bit builds by default;
[novacoin.git] / src / crypto / scrypt / intrin / scrypt-intrin.cpp
similarity index 99%
rename from src/crypto/scrypt/intrin/scrypt-sse2.cpp
rename to src/crypto/scrypt/intrin/scrypt-intrin.cpp
index bc828e3..04613b9 100644 (file)
  * online backup system.
  */
 
+#ifdef __ARM_NEON
+#include <sse2neon.h>
+#else
 #include <emmintrin.h>
+#endif
+
 #include "scrypt.h"
 
 static inline uint32_t le32dec(const void *pp)