Skip to content

Commit

Permalink
Merge pull request #406 from boostorg/issue405
Browse files Browse the repository at this point in the history
Fix selection logic in intel_intrinsics.hpp
  • Loading branch information
jzmaddock authored Dec 19, 2021
2 parents 38b781d + e1ae1e4 commit 06a4aae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/boost/multiprecision/cpp_int/intel_intrinsics.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
#undef BOOST_MP_HAS_IMMINTRIN_H
#endif

#if defined(BOOST_MSVC) && !defined(_M_IX86) && !defined(_M_ARM64) && !defined(_M_X64)
#if defined(BOOST_MSVC) && !defined(_M_IX86) && !defined(_M_X64) && !defined(_M_AMD64)
//
// When targeting platforms such as ARM, msvc still has the INtel headers in it's include path
// When targeting platforms such as ARM, msvc still has the Intel headers in it's include path
// even though they're not usable. See https://github.com/boostorg/multiprecision/issues/321
//
#undef BOOST_MP_HAS_IMMINTRIN_H
Expand Down

0 comments on commit 06a4aae

Please sign in to comment.