-
Notifications
You must be signed in to change notification settings - Fork 394
Intrinsics and overflow #152
New issue
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
Conversation
Hmm, but I think we are supposed to always mask the shift width... Compare the Debug and Release mode MIR and LLVM IR here: https://is.gd/LglRp7 Debug mode uses So I think we need to leave the code for |
Oh, I guess this code handles both |
In debug mode, the mir shows a concrete assert. In the release mode, we still forward and the masking is done by the forwarded to function. The masking was entirely redundant |
Ohhh. In release mode we still use the |
Huh, TIL the masking for |
Update to hashbrown 0.9
fixes #151