Uh oh!
There was an error while loading. Please reload this page.
Couple of random coroutine pass simplifications - #119322
Merged
Merged
Conversation
rustbot
commented
Dec 26, 2023
Collaborator
r? @cjgillot (rustbot has picked a reviewer for you, use r? to override) |
rustbot
commented
Dec 26, 2023
Collaborator
Some changes occurred to MIR optimizations cc @rust-lang/wg-mir-opt |
| } else { | ||
| body.local_decls[resume_local].ty | ||
| }; | ||
| let resume_ty = body.local_decls[resume_local].ty; |
ContributorAuthor
There was a problem hiding this comment.
The call to transform_async_context above ensures that body.local_decls[resume_local].ty == Ty::new_task_context(tcx)
bors
commented
Dec 28, 2023
Collaborator
☔ The latest upstream changes (presumably #119174) made this pull request unmergeable. Please resolve the merge conflicts. |
rust-cloud-vmsBotforce-pushed
the
async-gen-resume-ty
branch
from
December 29, 2023 00:21
85d9002 to
d71f7beComparecjgillot
commented
Dec 29, 2023
Contributor
@bors r+ rollup |
bors
commented
Dec 29, 2023
Collaborator
bors added a commit
to rust-lang-ci/rust
that referenced
this pull request
Dec 30, 2023
…iaskrgr Rollup of 5 pull requests Successful merges: - rust-lang#119322 (Couple of random coroutine pass simplifications) - rust-lang#119374 (Italicise "bytes" in the docs of some `Vec` methods) - rust-lang#119388 (rustc_lint: Prevent triplication of various lints) - rust-lang#119406 (Add non-regression test for ATPIT ICE rust-lang#114325) - rust-lang#119410 (Rename test to be more descriptive) r? `@ghost` `@rustbot` modify labels: rollup
rust-timer added a commit
to rust-lang-ci/rust
that referenced
this pull request
Dec 30, 2023
Rollup merge of rust-lang#119322 - compiler-errors:async-gen-resume-ty, r=cjgillot Couple of random coroutine pass simplifications Just aesthetic changes, except for a random `Ty::new_task_context(tcx)` call that was redundant.
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.
Just aesthetic changes, except for a random
Ty::new_task_context(tcx)call that was redundant.