Rollup of 6 pull requests#155953
Open
ShoyuVanilla wants to merge 14 commits intorust-lang:mainfrom
Open
Conversation
- This field is just a copy of `sess.unstable_opts.assume_incomplete_release`. - This field has a single use. - `sess` is also available at that use point So this commit removes the field and gets the value directly from `sess`.
`ParseSess` is separate from, but sits within, `Session`. The separation is because there are some places (e.g. `Parser` methods) where `ParseSess` is available but `Session` is not. However, `ParseSess` has four fields that are only accessed from places where `Session` is also available. This commit moves those fields to `Session`. This means that `ParseSess` only contains the fields it genuinely needs, and various `sess.psess.foo` occurrences are reduced to `sess.foo`.
…_hw_and_isa, r=ZuseZ4 NVPTX: Drop support for old architectures and old ISAs This is the implementation of [this MCP](rust-lang/compiler-team#965 (comment)) I believe it was said that no FCP was needed, but if that is incorrect then the FCP is anyway scheduled to finish in 2 days so it can in any case be merged then.
…outines, r=lcnr `-Znext-solver` Propagate `stalled_on_coroutines` as a field in `Certainty::Maybe` ..instead of collecting them with a `ProofTreeVisitor` Fixes rust-lang/trait-system-refactor-initiative#270
…nathanBrouwer Shrink `ParseSess` `ParseSess` contains some unnecessary fields. Details in individual commits. r? @JonathanBrouwer
delete unused auxiliary test files Related issue for detecting these properly: rust-lang#133914.
… r=nia-e fix: ✏️ forgot to change the stable version for `assert_matches!` macro. The `assert_matches` macro was delayed because of rust-lang#154406 and the `#[stable(since)]` wasn't changed to the next version.
…nce-tests, r=nnethercote tests: mark simple UI tests as check-pass This changes 14 simple UI tests from build-pass to check-pass. These tests cover type checking, trait bounds, closure inference, deprecation diagnostics, dyn compatibility, and variance. They do not need codegen or linking, so check-pass keeps the intended coverage while removing old FIXME(62277) markers.
Member
Author
|
@bors r+ p=5 |
Contributor
Member
|
Let us know if loongarch job still fails with insufficient disk space in #t-infra > loongarch-musl job running out of disk space. |
Contributor
|
⌛ Testing commit 7ffff36 with merge 4f9e4e1... Workflow: https://github.com/rust-lang/rust/actions/runs/25090584204 |
rust-bors Bot
pushed a commit
that referenced
this pull request
Apr 29, 2026
Rollup of 6 pull requests Successful merges: - #152443 (NVPTX: Drop support for old architectures and old ISAs) - #155648 (`-Znext-solver` Propagate `stalled_on_coroutines` as a field in `Certainty::Maybe`) - #155896 (Shrink `ParseSess`) - #155922 (delete unused auxiliary test files) - #155943 (fix: ✏️ forgot to change the stable version for `assert_matches!` macro.) - #155947 (tests: mark simple UI tests as check-pass)
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.
Successful merges:
-Znext-solverPropagatestalled_on_coroutinesas a field inCertainty::Maybe#155648 (-Znext-solverPropagatestalled_on_coroutinesas a field inCertainty::Maybe)ParseSess#155896 (ShrinkParseSess)assert_matches!macro. #155943 (fix: ✏️ forgot to change the stable version forassert_matches!macro.)r? @ghost
Create a similar rollup