We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
__popcnt
In VS 2022 17.11 Preview 1, MSVC-PR-530436 updated intrin0.inl.h to extend the previously x86/x64 __popcnt intrinsic family to ARM64:
intrin0.inl.h
__MACHINEX86_X64_ARM64(unsigned int __popcnt(unsigned int)) __MACHINEX86_X64_ARM64(unsigned short __popcnt16(unsigned short)) __MACHINEARM64_X64(unsigned __int64 __popcnt64(unsigned __int64))
It's unclear to me whether it would be simpler and/or faster to replace our existing ARM64 codepath:
STL/stl/inc/__msvc_bit_utils.hpp
Lines 351 to 356 in 63354c3
The text was updated successfully, but these errors were encountered:
popcount
Successfully merging a pull request may close this issue.
In VS 2022 17.11 Preview 1, MSVC-PR-530436 updated
intrin0.inl.h
to extend the previously x86/x64__popcnt
intrinsic family to ARM64:It's unclear to me whether it would be simpler and/or faster to replace our existing ARM64 codepath:
STL/stl/inc/__msvc_bit_utils.hpp
Lines 351 to 356 in 63354c3
The text was updated successfully, but these errors were encountered: