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
As @brson mentioned in IRC, ptr::memcpy uses libc_::memmove which can be optimized with an LLVM intrinsic.
ptr::memcpy
libc_::memmove
The text was updated successfully, but these errors were encountered:
I did a quick test and this does make nearly a 4x difference when doing small memcpy's in a tight loop.
Sorry, something went wrong.
fixed in 0c1d9be
No branches or pull requests
As @brson mentioned in IRC,
ptr::memcpy
useslibc_::memmove
which can be optimized with an LLVM intrinsic.The text was updated successfully, but these errors were encountered: