-
Notifications
You must be signed in to change notification settings - Fork 722
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
Use BitLength
in FFI when transparent structs are supported
#345
Comments
The rust feature is being tracked in rust-lang/rust#43036 |
The FFI functions use |
Yes. Unfortunately it is not trivial to switch them to |
In particular, I don't want to change the representation of |
I added the |
In BoringSSL, David Benjamin did some analysis and determined that, in general, we have to be very careful in changing the More generally, we now very rarely pass bit lengths to the C/asm code so I don't think it's worth even thinking about this as a TODO item. |
Example before:
Example after:
This depends on rust-lang/rfcs#1758.
The text was updated successfully, but these errors were encountered: