Uh oh!
There was an error while loading. Please reload this page.
A bundle of default method fixes and related changes - #7471
Closed
msullivan wants to merge 10 commits into
Closed
Conversation
…hods. This is done by adding a new notion of "vtable_self". We do not yet properly handle super traits. Closesrust-lang#7183.
…tions for each param.
This is work on rust-lang#7460. It does not properly handle certain cross crate situations, because we don't properly export vtable resolution information.
bors added a commit
that referenced
this pull request
Jun 29, 2013
This fixes a bunch of default method bugs and restructures how vtable resolutions are represented. (It also adds a depth counter to llvm::type_to_str as a hacky work around for our circular llvm types. This is related in the sense that I needed to do it to make debug tracing not cause rustc to crash after running out of stack space.)
Aatch
commented
Jun 29, 2013
Contributor
\o/ |
flip1995 pushed a commit
to flip1995/rust
that referenced
this pull request
Jul 19, 2021
Fix ICE in redundant_pattern_matching Fixesrust-lang#7410 changelog: Fix ICE in `redundant_pattern_matching` in `no_std` crates.
flip1995 pushed a commit
to flip1995/rust
that referenced
this pull request
Jul 19, 2021
Rustup r? `@ghost` Out of cycle sync for 2 ICE fixesrust-lang#7470rust-lang#7471rust-lang#7473 changelog: none
U007D pushed a commit
to U007D/rust-mos
that referenced
this pull request
Aug 21, 2026
7471: Force XCode version r=lnicola a=lnicola Pin an Xcode version in the release workflow to avoid: ``` Run SDKROOT=$(xcrun -sdk macosx11.0 --show-sdk-path) MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx11.0 --show-sdk-platform-version) cargo xtask dist xcodebuild: error: SDK "macosx11.0" cannot be located. xcodebuild: error: SDK "macosx11.0" cannot be located. xcrun: error: unable to lookup item 'Path' in SDK 'macosx11.0' xcodebuild: error: SDK "macosx11.0" cannot be located. xcodebuild: error: SDK "macosx11.0" cannot be located. xcrun: error: unable to lookup item 'PlatformVersion' in SDK 'macosx11.0' ``` Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
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 freeto 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.
This fixes a bunch of default method bugs and restructures how vtable resolutions are represented.
(It also adds a depth counter to llvm::type_to_str as a hacky work around for our circular llvm types. This is related in the sense that I needed to do it to make debug tracing not cause rustc to crash after running out of stack space.)