auto: Fix assorted issues with enums in constants.#4745
Closed
jld wants to merge 9 commits intorust-lang:incomingfrom
Closed
auto: Fix assorted issues with enums in constants.#4745jld wants to merge 9 commits intorust-lang:incomingfrom
jld wants to merge 9 commits intorust-lang:incomingfrom
Conversation
This is wasted space if the const is just an enum, but optimizing that case without breaking everything else is an issue that can be addressed separately.
bors
added a commit
that referenced
this pull request
Feb 8, 2013
There were a bunch of problems with consts where an enum was contained within some other type (vector, tuple, struct, etc.); some of these would cause LLVM assertion failures, and some would silently read from the wrong address. These changes should fix all of that. It would be good if someone with access to a win32 host could do the equivalent of `make check-stageN-rpass TESTNAME=enum` on that platform before merging this.
RalfJung
added a commit
to RalfJung/rust
that referenced
this pull request
Dec 6, 2025
fs shims: remove some aliases that don't actually exist or are not used on those targets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There were a bunch of problems with consts where an enum was contained within some other type (vector, tuple, struct, etc.); some of these would cause LLVM assertion failures, and some would silently read from the wrong address. These changes should fix all of that.
It would be good if someone with access to a win32 host could do the equivalent of
make check-stageN-rpass TESTNAME=enumon that platform before merging this.