Fix unresolved external symbol __popcnt on win-arm64

This commit is contained in:
Christoph Gohlke 2022-11-27 19:46:13 -05:00
parent 163c974423
commit 92a7bfc680

@ -1492,7 +1492,7 @@ vtkm::Int32 CountSetBits(vtkm::UInt32 word)
return __builtin_popcount(word);
# elif defined(VTKM_MSVC)
# elif defined(VTKM_MSVC) && !defined(_M_ARM64)
return static_cast<vtkm::Int32>(__popcnt(word));
@ -1534,7 +1534,7 @@ vtkm::Int32 CountSetBits(vtkm::UInt64 word)
return __builtin_popcountll(word);
# elif defined(VTKM_MSVC)
# elif defined(VTKM_MSVC) && !defined(_M_ARM64)
return static_cast<vtkm::Int32>(__popcnt64(word));