From 217a5c29ef822a18bd0a80e05f603687b1d7cf44 Mon Sep 17 00:00:00 2001 From: evoskuil Date: Wed, 29 Jan 2025 00:09:45 -0500 Subject: [PATCH] Disable non-xcode clang vectorization hack. --- include/bitcoin/system/intrinsics/haves.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bitcoin/system/intrinsics/haves.hpp b/include/bitcoin/system/intrinsics/haves.hpp index 908f1aecd1..dfa2e6fc0b 100644 --- a/include/bitcoin/system/intrinsics/haves.hpp +++ b/include/bitcoin/system/intrinsics/haves.hpp @@ -32,7 +32,7 @@ namespace system { // HACK: work around vectorizations failing on non-xcode clang. #if defined(HAVE_CLANG) && !defined(HAVE_XCODE) - constexpr auto with_clang = true; + constexpr auto with_clang = false; #else constexpr auto with_clang = false; #endif