Skip to content

Commit c249972

Browse files
committed
revive SSE version
1 parent e1ad739 commit c249972

File tree

4 files changed

+1385
-3
lines changed

4 files changed

+1385
-3
lines changed

yescrypt-best.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
#ifdef __SSE2__
2-
#include "yescrypt-simd.c"
1+
#ifdef __ARM_NEON__
2+
#include "yescrypt-neon.c"
3+
#elif defined __SSE__
4+
#include "yescrypt-sse.c"
35
#else
46
#include "yescrypt-opt.c"
57
#endif

yescrypt-simd.c yescrypt-neon.c

File renamed without changes.

0 commit comments

Comments
 (0)