-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Enums with >32 bits on i686 are all canonicalized to 0 #8199
Comments
@kemurphy is working in this area. |
Oh boy, this'll be fun. My big patch is nearing completion but I'm going to be traveling all day tomorrow so it still won't be done for a few days I bet. |
My full-time job is keeping be busy enough to not have a whole lot of time to work on this, but the big patch I was working on ended up not working out anyway. I was trying to unify the representation of structs, tuple structs, and all the enum variants behind the scenes (so they all followed one path on their way to trans), but tuple structs and variants have a special case where they can get passed around as callable values and that conflicted with what I was trying to do. I'm planning on trying again with a different design that doesn't nuke the callable stuff but due to lack of time it'll be a while before it lands. Consequently, if someone else wants to pick up this bug they should go for it. |
@kemurphy No worries. Thanks for trying and thanks for the update! |
Closed by #9613, tests appear to be sufficient. |
The following test fails on i686, and passes on x86_64
This is blocking #7115 until I have time to make a workaround.
The text was updated successfully, but these errors were encountered: