Skip to content

Conversation

@Dylan-DPC
Copy link
Member

Successful merges:

Failed merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

tmiasko and others added 11 commits August 6, 2022 11:14
Temporaries created with `MirPatch::new_temp` will be declared after patch application. Remove manually created duplicate declarations. Removing duplicates exposes another issue. Visitor elaborates terminator twice and attempts to access new, but not yet available, local declarations. Remove duplicated call to `visit_terminator`.
The "fallback" naming pre-dates introduction of `-Clink-self-contained`
Split render_with_highlighting, which took many optional parameters, into three functions for specific purposes, which each take a smaller number of mostly required parameters. Remove some plumbing to pass through an "edition" parameter, which was used solely to avoid highlighting some 2021 Edition keywords in non-2021 code.
…eGomez rustdoc: simplify highlight.rs Split render_with_highlighting, which took many optional parameters, into three functions for specific purposes, which each take a smaller number of mostly required parameters. Remove some plumbing to pass through an "edition" parameter, which was used solely to avoid highlighting some 2021 Edition keywords in non-2021 code. I've tested a build of std docs before and after, and this does not change the generated HTML at all. Followup from rust-lang#91264 (comment) r? `@GuillaumeGomez`
rustc_target: Update some old naming around self contained linking The "fallback" naming pre-dates introduction of `-Clink-self-contained`. Noticed when reviewing rust-lang#99500. This PR doesn't break any json target spec, but supporting per-linker-flavor startup objects needed by rust-lang#99500 will break them, so maybe next time I'll remove the compatibility names.
…gisa Remove duplicated temporaries creating during box derefs elaboration Temporaries created with `MirPatch::new_temp` will be declared after patch application. Remove manually created duplicate declarations. Removing duplicates exposes another issue. Visitor elaborates terminator twice and attempts to access new, but not yet available, local declarations. Remove duplicated call to `visit_terminator`. Extracted from rust-lang#99946.
…r=eddyb Remove logic related to deprecated nvptx-nvidia-cuda (32-bit) target As described in the MCP rust-lang/compiler-team#496 (comment) r? `@eddyb`
Fix doc links in core::time::Duration::as_secs
@rustbot rustbot added T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. rollup A PR which is a rollup labels Aug 10, 2022
@Dylan-DPC
Copy link
Member Author

@bors r+ rollup=never p=5

@bors
Copy link
Collaborator

bors commented Aug 10, 2022

📌 Commit 9b3894b has been approved by Dylan-DPC

It is now in the queue for this repository.

@bors bors added the S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. label Aug 10, 2022
@bors
Copy link
Collaborator

bors commented Aug 10, 2022

⌛ Testing commit 9b3894b with merge a77cbdce6eca95e675281ecb8717aa249ca94ac7...

@bors
Copy link
Collaborator

bors commented Aug 10, 2022

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Aug 10, 2022
@rust-log-analyzer
Copy link
Collaborator

The job x86_64-apple-1 failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
 Memory: 14 GB System Firmware Version: VMW71.00V.13989454.B64.1906190538 Apple ROM Info: [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]Welcome to the Virtual Machine SMC Version (system): 2.8f0 Serial Number (system): VMpJpCYqo9KS Provisioning UDID: 4203018E-580F-C1B5-9525-B745CECA79EB hw.ncpu: 3 hw.byteorder: 1234 --- failures: ---- [incremental] src/test/incremental/type_alias_cross_crate/b.rs stdout ---- error in revision `rpass3`: compilation failed! status: exit status: 1 command: "/Users/runner/work/rust/rust/build/x86_64-apple-darwin/stage2/bin/rustc" "/Users/runner/work/rust/rust/src/test/incremental/type_alias_cross_crate/b.rs" "-Zthreads=1" "--target=x86_64-apple-darwin" "--cfg" "rpass3" "-C" "incremental=/Users/runner/work/rust/rust/build/x86_64-apple-darwin/test/incremental/type_alias_cross_crate/b/b.inc" "-Z" "incremental-verify-ich" "-O" "--error-format" "json" "--json" "future-incompat" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-C" "prefer-dynamic" "-o" "/Users/runner/work/rust/rust/build/x86_64-apple-darwin/test/incremental/type_alias_cross_crate/b/a" "-Crpath" "-Cdebuginfo=0" "-Lnative=/Users/runner/work/rust/rust/build/x86_64-apple-darwin/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/Users/runner/work/rust/rust/build/x86_64-apple-darwin/test/incremental/type_alias_cross_crate/b/auxiliary" stdout: none --- stderr ------------------------------- warning: unused variable: `x` | | LL | let x: a::Y = 'c'; | ^ help: if this is intentional, prefix it with an underscore: `_x` = note: `#[warn(unused_variables)]` on by default warning: function `use_X` should have a snake case name | | LL | pub fn use_X() -> u32 { | ^^^^^ help: convert the identifier to snake case (notice the capitalization): `use_x` = note: `#[warn(non_snake_case)]` on by default warning: function `use_Y` should have a snake case name | | LL | pub fn use_Y() { | ^^^^^ help: convert the identifier to snake case (notice the capitalization): `use_y` error: `typeck(use_X)` should be clean but is not | | LL | pub fn use_X() -> u32 { error: aborting due to previous error; 3 warnings emitted ------------------------------------------ 
@bors
Copy link
Collaborator

bors commented Aug 12, 2022

☔ The latest upstream changes (presumably #100426) made this pull request unmergeable. Please resolve the merge conflicts.

@Dylan-DPC Dylan-DPC closed this Aug 12, 2022
@Dylan-DPC Dylan-DPC deleted the rollup-mc3ofh3 branch August 12, 2022 05:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

rollup A PR which is a rollup S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.

9 participants