aboutsummaryrefslogtreecommitdiff
path: root/c/blake3_dispatch.c
diff options
context:
space:
mode:
authorwargio <[email protected]>2022-09-17 16:22:54 +0200
committerwargio <[email protected]>2022-10-03 11:24:18 +0200
commitcf5d59cd4357d06f3e9c64f6ea652d5378ba5c35 (patch)
tree0c38e004cb2e05a28579d9a6905204885aa81f8c /c/blake3_dispatch.c
parent7e15c5314ea0ca34c52fd39583b1aa7c07eac1ae (diff)
Support portable build without intrinsics
Diffstat (limited to 'c/blake3_dispatch.c')
-rw-r--r--c/blake3_dispatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/blake3_dispatch.c b/c/blake3_dispatch.c
index 95213db..0f348ef 100644
--- a/c/blake3_dispatch.c
+++ b/c/blake3_dispatch.c
@@ -10,7 +10,7 @@
#elif defined(__GNUC__)
#include <immintrin.h>
#else
-#error "Unimplemented!"
+#undef IS_X86 /* Unimplemented! */
#endif
#endif