-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Represent Option<bool> and Option<char> as 8bit and 32bit values #36237
Conversation
…r> and Option<bool> r?luqmana
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @Aatch (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
It looks ok to me, but I'd like some other @rust-lang/compiler people to look at it as well. One possible concern is that we're currently trying to get rid of this code in favour of using the layout code in librustc. |
This is a problematic time to actually make changes to layout code, you'd at least want to wait for #36151, but I'll take a look. |
Ah, seems that you only changed |
My thoughts from IRC:
|
I'll probably take a look at this if no one beats me to it, but I consider struct layout optimization to be more important and intend to try to do that first. |
☔ The latest upstream changes (presumably #36016) made this pull request unmergeable. Please resolve the merge conflicts. |
This is pretty cool. Good work! |
Just read this. It's interesting, and kind of goes in line with some other stuff I was bringing up on IRC. It should be pretty easy to port this to layout. If we're going to though, I think we should go all out and handle the case of |
Closing due to inactivity, but feel free to resubmit with a rebase! |
Closes #5977.
This is a rebase and re-issue of @Yoric's work from #31215.
CC @pnkfelix @luqmana -- anyone else?