aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/sha256_avx2.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2018-06-11 09:59:20 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2018-06-26 10:11:08 -0700
commit66b2cf1ccfad545a8ec3f2a854e23f647322bf30 (patch)
tree42d9bf2ea25002af6a18bcd02fa4458340a44092 /src/crypto/sha256_avx2.cpp
parent4c935e2eee456ff66cdfb908b0edffdd1e8a6c04 (diff)
downloadbitcoin-66b2cf1ccfad545a8ec3f2a854e23f647322bf30.tar.xz
Use immintrin.h everywhere for intrinsics
Diffstat (limited to 'src/crypto/sha256_avx2.cpp')
-rw-r--r--src/crypto/sha256_avx2.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/crypto/sha256_avx2.cpp b/src/crypto/sha256_avx2.cpp
index b338b06927..068e0e5ff6 100644
--- a/src/crypto/sha256_avx2.cpp
+++ b/src/crypto/sha256_avx2.cpp
@@ -1,11 +1,7 @@
#ifdef ENABLE_AVX2
#include <stdint.h>
-#if defined(_MSC_VER)
#include <immintrin.h>
-#elif defined(__GNUC__)
-#include <x86intrin.h>
-#endif
#include <crypto/sha256.h>
#include <crypto/common.h>