-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 8 pull requests #106565
Rollup of 8 pull requests #106565
Commits on Dec 10, 2022
-
Fix process-panic-after-fork.rs to pass on newer versions of Android.
The test process-panic-after-fork.rs was checking that abort() resulted in SIGSEGV on Android. This non-standard behavior was fixed back in 2013, so let's fix the test to also accept the standard behavior on Android.
Configuration menu - View commit details
-
Copy full SHA for 9553a4d - Browse repository at this point
Copy the full SHA 9553a4dView commit details
Commits on Dec 18, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 5cccb36 - Browse repository at this point
Copy the full SHA 5cccb36View commit details
Commits on Dec 28, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 82cf6f2 - Browse repository at this point
Copy the full SHA 82cf6f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 78796ba - Browse repository at this point
Copy the full SHA 78796baView commit details -
Configuration menu - View commit details
-
Copy full SHA for d41112a - Browse repository at this point
Copy the full SHA d41112aView commit details -
[WIP] UPDATE - migrate intrinsic.rs to new diagnostic infrastructure
WIP - replacing span_invalid_monomorphization_error function. Still in progress due to its use in codegen_llvm inside macros
Configuration menu - View commit details
-
Copy full SHA for e26366a - Browse repository at this point
Copy the full SHA e26366aView commit details -
Configuration menu - View commit details
-
Copy full SHA for d1030fa - Browse repository at this point
Copy the full SHA d1030faView commit details -
ADD - create and emit Bug support for Diagnostics
UPDATE - migrate constant span_bug to translatable diagnostic.
Configuration menu - View commit details
-
Copy full SHA for 2774446 - Browse repository at this point
Copy the full SHA 2774446View commit details -
Configuration menu - View commit details
-
Copy full SHA for 29d8c87 - Browse repository at this point
Copy the full SHA 29d8c87View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d63d7d - Browse repository at this point
Copy the full SHA 4d63d7dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8360a40 - Browse repository at this point
Copy the full SHA 8360a40View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2118ff4 - Browse repository at this point
Copy the full SHA 2118ff4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3935a81 - Browse repository at this point
Copy the full SHA 3935a81View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0634b01 - Browse repository at this point
Copy the full SHA 0634b01View commit details -
Configuration menu - View commit details
-
Copy full SHA for 57fdd19 - Browse repository at this point
Copy the full SHA 57fdd19View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c19c08 - Browse repository at this point
Copy the full SHA 6c19c08View commit details -
Configuration menu - View commit details
-
Copy full SHA for 71d24da - Browse repository at this point
Copy the full SHA 71d24daView commit details -
Configuration menu - View commit details
-
Copy full SHA for eb7ce17 - Browse repository at this point
Copy the full SHA eb7ce17View commit details -
Configuration menu - View commit details
-
Copy full SHA for 40b2218 - Browse repository at this point
Copy the full SHA 40b2218View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19b8579 - Browse repository at this point
Copy the full SHA 19b8579View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7ecd064 - Browse repository at this point
Copy the full SHA 7ecd064View commit details -
Configuration menu - View commit details
-
Copy full SHA for 62f9962 - Browse repository at this point
Copy the full SHA 62f9962View commit details -
Configuration menu - View commit details
-
Copy full SHA for a861737 - Browse repository at this point
Copy the full SHA a861737View commit details -
Configuration menu - View commit details
-
Copy full SHA for dda3eba - Browse repository at this point
Copy the full SHA dda3ebaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a8b17d - Browse repository at this point
Copy the full SHA 2a8b17dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c50e1f - Browse repository at this point
Copy the full SHA 0c50e1fView commit details
Commits on Jan 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ce6b717 - Browse repository at this point
Copy the full SHA ce6b717View commit details
Commits on Jan 7, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 43bec83 - Browse repository at this point
Copy the full SHA 43bec83View commit details -
rustdoc: remove no-op mobile CSS
.content { margin-left: 0 }
This rule was added to override non-zero left margin on `.content`, which was removed in 135281e and the margin-left was put on the docblock.
Configuration menu - View commit details
-
Copy full SHA for a7ac923 - Browse repository at this point
Copy the full SHA a7ac923View commit details -
Add regression test for rust-lang#100772
Signed-off-by: Yuki Okushi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ce32867 - Browse repository at this point
Copy the full SHA ce32867View commit details -
Rollup merge of rust-lang#101936 - IntQuant:issue-100717-infer-4, r=c…
…ompiler-errors Migrating rustc_infer to session diagnostics (part 3) `@rustbot` label +A-translation r? rust-lang/diagnostics cc rust-lang#100717 Seems like a part of static_impl_trait.rs emits suggestions in a loop, and note.rs needs to have two instances of the same subdiagnostic, so these will need to wait until we have eager translation/list support. Other than that, there is only error_reporting/mod.rs left to migrate.
Configuration menu - View commit details
-
Copy full SHA for 1d3ab79 - Browse repository at this point
Copy the full SHA 1d3ab79View commit details -
Rollup merge of rust-lang#104543 - JhonnyBillM:migrate-codegen-ssa-to…
…-diagnostics-structs-pt3, r=davidtwco Migrate `codegen_ssa` to diagnostics structs - [Part 3] Completes migrating `codegen_ssa` module except 2 outstanding errors that depend on other crates: 1. [`rustc_middle::mir::interpret::InterpError`](https://github.com/rust-lang/rust/blob/b6097f2e1b2ca62e188ba53cf43bd66b06b36915/compiler/rustc_middle/src/mir/interpret/error.rs#L475): I saw `rustc_middle` is unassigned, I am open to take this work. 2. `codegen_llvm`'s use of `fn span_invalid_monomorphization_error`, which I started to replace in the [last commit](rust-lang@9a31b3c) of this PR, but would like to know the team's preference on how we should keep replacing the other macros: 2.1. Update macros to expect a `Diagnostic` 2.2. Remove macros and expand the code on each use. See [some examples of the different options in this experimental commit](JhonnyBillM@64aee83) _Part 2 - https://github.com/rust-lang/rust/pull/103792_ r? `@davidtwco` Cc `@compiler-errors`
Configuration menu - View commit details
-
Copy full SHA for 59e3b36 - Browse repository at this point
Copy the full SHA 59e3b36View commit details -
Rollup merge of rust-lang#105517 - pcc:process-panic-after-fork, r=da…
…vidtwco Fix process-panic-after-fork.rs to pass on newer versions of Android. The test process-panic-after-fork.rs was checking that abort() resulted in SIGSEGV on Android. This non-standard behavior was fixed back in 2013, so let's fix the test to also accept the standard behavior on Android.
Configuration menu - View commit details
-
Copy full SHA for 4239e54 - Browse repository at this point
Copy the full SHA 4239e54View commit details -
Rollup merge of rust-lang#105859 - compiler-errors:hr-lifetime-add, r…
…=davidtwco Point out span where we could introduce higher-ranked lifetime Somewhat addresses rust-lang#105422, but not really. We don't have that much useful information here since we're still in resolution :^( Maybe this suggestion isn't worth it. If the reviewer has an idea how we can get a more succinct binder information for a structured suggestion, it would be appreciated.
Configuration menu - View commit details
-
Copy full SHA for 58a2367 - Browse repository at this point
Copy the full SHA 58a2367View commit details -
Rollup merge of rust-lang#106495 - JohnTitor:issue-100772, r=compiler…
…-errors Add regression test for rust-lang#100772 Closes rust-lang#100772 r? `@compiler-errors` Signed-off-by: Yuki Okushi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1730aa2 - Browse repository at this point
Copy the full SHA 1730aa2View commit details -
Rollup merge of rust-lang#106509 - estebank:closure-in-block, r=david…
…twco Detect closures assigned to binding in block Fix rust-lang#58497.
Configuration menu - View commit details
-
Copy full SHA for 07a47a3 - Browse repository at this point
Copy the full SHA 07a47a3View commit details -
Rollup merge of rust-lang#106553 - Ezrashaw:fix-hashset-doctest, r=Jo…
…hnTitor docs: make `HashSet::retain` doctest more clear Fixes rust-lang#106535 Extremely simple fix suggested by `@compiler-errors` in the linked issue.
Configuration menu - View commit details
-
Copy full SHA for e33c22c - Browse repository at this point
Copy the full SHA e33c22cView commit details -
Rollup merge of rust-lang#106556 - notriddle:notriddle/margin-left-co…
…ntent-mobile, r=GuillaumeGomez rustdoc: remove no-op mobile CSS `.content { margin-left: 0 }` This rule was added to override non-zero left margin on `.content`, which was removed in 135281e and the margin-left was put on the docblock.
Configuration menu - View commit details
-
Copy full SHA for 9639646 - Browse repository at this point
Copy the full SHA 9639646View commit details