-
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 7 pull requests #122534
Rollup of 7 pull requests #122534
Commits on Mar 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c2cc904 - Browse repository at this point
Copy the full SHA c2cc904View commit details
Commits on Mar 13, 2024
-
Add
-Z external-sanitizer-runtime
This adds the unstable `-Z external-sanitizer-runtime` flag that will prevent rustc from emitting linker paths for the in-tree LLVM sanitizer runtime library.
Configuration menu - View commit details
-
Copy full SHA for 2a9d1ed - Browse repository at this point
Copy the full SHA 2a9d1edView commit details -
Configuration menu - View commit details
-
Copy full SHA for bf2858a - Browse repository at this point
Copy the full SHA bf2858aView commit details
Commits on Mar 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f46acea - Browse repository at this point
Copy the full SHA f46aceaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 87ced15 - Browse repository at this point
Copy the full SHA 87ced15View commit details -
Configuration menu - View commit details
-
Copy full SHA for 48f2f0d - Browse repository at this point
Copy the full SHA 48f2f0dView commit details
Commits on Mar 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 571f945 - Browse repository at this point
Copy the full SHA 571f945View commit details -
Configuration menu - View commit details
-
Copy full SHA for cac0b12 - Browse repository at this point
Copy the full SHA cac0b12View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5beda81 - Browse repository at this point
Copy the full SHA 5beda81View commit details -
Rollup merge of rust-lang#121207 - chriswailes:z-external-clangrt, r=…
…michaelwoerister Add `-Z external-clangrt` This adds the unstable `-Z external-clangrt` flag that will prevent rustc from emitting linker paths for the in-tree LLVM sanitizer runtime library.
Configuration menu - View commit details
-
Copy full SHA for 2b8fc6f - Browse repository at this point
Copy the full SHA 2b8fc6fView commit details -
Rollup merge of rust-lang#122174 - notriddle:master, r=TaKO8Ki
diagnostics: suggest `Clone` bounds when noop `clone()` Fixes rust-lang#121524
Configuration menu - View commit details
-
Copy full SHA for e66c7e4 - Browse repository at this point
Copy the full SHA e66c7e4View commit details -
Rollup merge of rust-lang#122471 - RalfJung:const-eval-span, r=oli-obk
preserve span when evaluating mir::ConstOperand This lets us show to the user where they were using the faulty const (which can be quite relevant when generics are involved). I wonder if we should change "erroneous constant encountered" to something like "the above error was encountered while evaluating this constant" or so, to make this more similar to what the collector emits when showing a "backtrace" of where things get monomorphized? It seems a bit strange to rely on the order of emitted diagnostics for that but it seems the collector already [does that](https://github.com/rust-lang/rust/blob/da8a8c9223722e17cc0173ce9490076b4a6d263d/compiler/rustc_monomorphize/src/collector.rs#L472-L475).
Configuration menu - View commit details
-
Copy full SHA for f4afbe1 - Browse repository at this point
Copy the full SHA f4afbe1View commit details -
Rollup merge of rust-lang#122515 - jieyouxu:ice-self-ty-mismatch, r=c…
…ompiler-errors Pass the correct DefId when suggesting writing the aliased Self type out Fixes rust-lang#122467.
Configuration menu - View commit details
-
Copy full SHA for 42af993 - Browse repository at this point
Copy the full SHA 42af993View commit details -
Rollup merge of rust-lang#122523 - compiler-errors:ensure-associated-…
…types, r=oli-obk Ensure RPITITs are created before def-id freezing From the test: ```rust // `ty::Error` in a trait ref will silence any missing item errors, but will also // prevent the `associated_items` query from being called before def ids are frozen. ``` Essentially, the code that checks that `impl`s have all their items (`check_impl_items_against_trait`) is also (implicitly) responsible for fetching the `associated_items` query before, but since we early return here: https://github.com/rust-lang/rust/blob/c2901f543577af99b9cb708f5c0d28525eb7f08f/compiler/rustc_hir_analysis/src/check/check.rs#L732-L737 ...that means that this never happens for trait refs that reference errors. Fixes rust-lang#122518 r? oli-obk
Configuration menu - View commit details
-
Copy full SHA for ee940f8 - Browse repository at this point
Copy the full SHA ee940f8View commit details -
Rollup merge of rust-lang#122526 - Zalathar:thir-expr-docs, r=oli-obk
Docs for `thir::ExprKind::Use` and `thir::ExprKind::Let` These docs are based on my own recent investigations; hopefully they're reasonably accurate. `Use` was particularly puzzling to me at first, since the name is not very suggestive, and the old docs were quite cryptic.
Configuration menu - View commit details
-
Copy full SHA for 7a7b65a - Browse repository at this point
Copy the full SHA 7a7b65aView commit details -
Rollup merge of rust-lang#122527 - fmease:clean-up-hir-ty-lowering, r…
…=compiler-errors Clean up AstConv Split off from rust-lang#120926 to make it only contain the renaming & (doc) comment updates. Any changes other than that which have accumulated over time are now part of this PR. Let's be disciplined ;) Inspired by rust-lang#120926 (comment). --- * Remove `hir_trait_to_predicates` * Unused since rust-lang#113671 * Inline `create_args_for_ast_trait_ref` * Only had a single call site * Having it as a separate method didn't gain us anything * Use an if-let guard somewhere to avoid unwrapping * Avoid explicit trait object lifetimes * More legible, stylistic-only (the updated code is 100% semantically identical) * Use explicitly elided lifetimes in impl headers, they get elaborated to distinct lifetimes * Make use of [object lifetime defaulting](https://doc.rust-lang.org/reference/lifetime-elision.html#default-trait-object-lifetimes) for a trait object type inside of a reference type somewhere * Use preexisting dedicated method `ItemCtxt::to_ty` over `<dyn AstConv<'_>>::ast_ty_to_ty` * Use preexisting dedicated method `AstConv::astconv` over explicit coercions * Simplify the function signature of `create_args_for_ast_path` and of `check_generic_arg_count` * In both cases redundant information was passed rendering the call sites verbose and confusing * No perf impact (tested in [rust-lang#120926](rust-lang#120926)) * Move diagnostic method `report_ambiguous_associated_type` from `astconv` to `astconv::errors` * The submodule `errors` exists specifically for that purpose * Use it to keep the main module clean & short
Configuration menu - View commit details
-
Copy full SHA for 277df5e - Browse repository at this point
Copy the full SHA 277df5eView commit details