Merge topic 'cgohlke-master-patch-04055'

0575e036d Fix unresolved external symbol __popcnt on win-arm64
92a7bfc68 Fix unresolved external symbol __popcnt on win-arm64

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2929
This commit is contained in:
Kenneth Moreland 2022-11-28 22:02:43 +00:00 committed by Kitware Robot
commit de79aecc83
2 changed files with 4 additions and 4 deletions

@ -2890,7 +2890,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));
@ -2932,7 +2932,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));

@ -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));