You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 24, 2018. It is now read-only.
I've discovered that recent rustc nightlies (since January 30 at least) are smart enough to optimize memset and possibly other functions provided here into calls to the corresponding intrinsic which makes them recurse infinitely.
I'm guessing it's related to the switch to LLVM 3.8 in 303892ee15. I'm adopting a workaround with optimized assembly versions of these functions which are opaque to the optimizer, but that's not a portable nor particularly good solution.
The text was updated successfully, but these errors were encountered:
I've discovered that recent rustc nightlies (since January 30 at least) are smart enough to optimize
memset
and possibly other functions provided here into calls to the corresponding intrinsic which makes them recurse infinitely.I'm guessing it's related to the switch to LLVM 3.8 in 303892ee15. I'm adopting a workaround with optimized assembly versions of these functions which are opaque to the optimizer, but that's not a portable nor particularly good solution.
The text was updated successfully, but these errors were encountered: