-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 11 pull requests #130907
Rollup of 11 pull requests #130907
Commits on Sep 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e2c9831 - Browse repository at this point
Copy the full SHA e2c9831View commit details
Commits on Sep 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6fa092a - Browse repository at this point
Copy the full SHA 6fa092aView commit details -
Configuration menu - View commit details
-
Copy full SHA for f604ed6 - Browse repository at this point
Copy the full SHA f604ed6View commit details
Commits on Sep 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4788e8c - Browse repository at this point
Copy the full SHA 4788e8cView commit details
Commits on Sep 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for de2eba1 - Browse repository at this point
Copy the full SHA de2eba1View commit details
Commits on Sep 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 986e20d - Browse repository at this point
Copy the full SHA 986e20dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f1ed9b - Browse repository at this point
Copy the full SHA 8f1ed9bView commit details -
Pass Module Analysis Manager to Standard Instrumentations
Aleksei Romanov committedSep 25, 2024 Configuration menu - View commit details
-
Copy full SHA for afb7eef - Browse repository at this point
Copy the full SHA afb7eefView commit details -
Configuration menu - View commit details
-
Copy full SHA for a51b0a2 - Browse repository at this point
Copy the full SHA a51b0a2View commit details
Commits on Sep 26, 2024
-
Fix the misleading diagnostic for let_underscore_drop on type without…
… Drop implementation
Configuration menu - View commit details
-
Copy full SHA for 5892187 - Browse repository at this point
Copy the full SHA 5892187View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1bef68c - Browse repository at this point
Copy the full SHA 1bef68cView commit details -
rustdoc: do not animate when user prefers reduced motion
This accessibility improvement gates the target flashing and tooltip fade-out behind an inverted prefers-reduced-motion media query.
Configuration menu - View commit details
-
Copy full SHA for cdd3371 - Browse repository at this point
Copy the full SHA cdd3371View commit details -
Configuration menu - View commit details
-
Copy full SHA for ef87a7f - Browse repository at this point
Copy the full SHA ef87a7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9431d1a - Browse repository at this point
Copy the full SHA 9431d1aView commit details -
Configuration menu - View commit details
-
Copy full SHA for e29ff8c - Browse repository at this point
Copy the full SHA e29ff8cView commit details -
rustdoc: consolidate prefers-reduced-motion-gated rulesets
zopsicle committedSep 26, 2024 Configuration menu - View commit details
-
Copy full SHA for 5b58481 - Browse repository at this point
Copy the full SHA 5b58481View commit details -
Rollup merge of rust-lang#130279 - theemathas:manually-drop-docs, r=t…
…homcc,traviscross Document subtleties of `ManuallyDrop` After seeing rust-lang#130140 and rust-lang#130141, I figured that `ManuallyDrop` needs documentation explaining its subtleties, hence this PR. See also rust-lang/unsafe-code-guidelines#245
Configuration menu - View commit details
-
Copy full SHA for 8a827c7 - Browse repository at this point
Copy the full SHA 8a827c7View commit details -
Rollup merge of rust-lang#130517 - bjorn3:update_ra_config, r=onur-ozkan
Add the library workspace to the suggested rust-analyzer config
Configuration menu - View commit details
-
Copy full SHA for a4a591a - Browse repository at this point
Copy the full SHA a4a591aView commit details -
Rollup merge of rust-lang#130820 - 91khr:fix-coroutine-unit-arg, r=co…
…mpiler-errors Fix diagnostics for coroutines with () as input. This may be a more real-life example to trigger the diagnostic: ```rust #![features(try_blocks, coroutine_trait, coroutines)] use std::ops::Coroutine; struct Request; struct Response; fn get_args() -> Result<String, String> { todo!() } fn build_request(_arg: String) -> Request { todo!() } fn work() -> impl Coroutine<Option<Response>, Yield = Request> { #[coroutine] |_| { let r: Result<(), String> = try { let req = get_args()?; yield build_request(req) }; if let Err(msg) = r { eprintln!("Error: {msg}"); } } } ```
Configuration menu - View commit details
-
Copy full SHA for 0acddf5 - Browse repository at this point
Copy the full SHA 0acddf5View commit details -
Rollup merge of rust-lang#130833 - makai410:master, r=compiler-errors…
…,fee1-dead Fix the misleading diagnostic for `let_underscore_drop` on type without `Drop` implementation Closes: rust-lang#130430 r? rust-lang/diagnostics
Configuration menu - View commit details
-
Copy full SHA for d3cb1ce - Browse repository at this point
Copy the full SHA d3cb1ceView commit details -
Rollup merge of rust-lang#130845 - RalfJung:utf8chunk, r=tgross35
Utf8Chunks: add link to Utf8Chunk It is currently surprisingly non-trivial to go from the `utf8_chunks` method to the docs of the `valid`/`invalid` methods used in the example. This should help.
Configuration menu - View commit details
-
Copy full SHA for e650546 - Browse repository at this point
Copy the full SHA e650546View commit details -
Rollup merge of rust-lang#130850 - saveasguy:pass-mam-to-standrd-inst…
…rumentations, r=nikic Pass Module Analysis Manager to Standard Instrumentations This PR introduces changes related to llvm::PassInstrumentationCallbacks. Now, we pass Module Analysis Manager to StandardInstrumentations::registerCallbacks, so it can take advantage of such instrumentations as IR verifier or preserved CFG checker. So basically this is NFC PR.
Configuration menu - View commit details
-
Copy full SHA for c9478ef - Browse repository at this point
Copy the full SHA c9478efView commit details -
Rollup merge of rust-lang#130861 - cuviper:sun-path-offset, r=ibrahee…
…mdev Use `mem::offset_of!` for `sockaddr_un.sun_path` We don't need manual pointer math here anymore! try-job: dist-i686-msvc
Configuration menu - View commit details
-
Copy full SHA for 329f9fc - Browse repository at this point
Copy the full SHA 329f9fcView commit details -
Rollup merge of rust-lang#130862 - zopsicle:patch-1, r=notriddle,Guil…
…laumeGomez rustdoc: do not animate :target when user prefers reduced motion This accessibility improvement gates rust-lang#129284 behind an inverted [prefers-reduced-motion](https://developer.mozilla.org/en-US/docs/Web/CSS/`@media/prefers-reduced-motion)` media query.
Configuration menu - View commit details
-
Copy full SHA for 432b1ff - Browse repository at this point
Copy the full SHA 432b1ffView commit details -
Rollup merge of rust-lang#130868 - taiki-e:s390x-fixme, r=jieyouxu
Update FIXME comment in s390x_unknown_linux_*.rs - Remove comment about "LLVM < 16" since the minimum external LLVM version is 16+ since rust-lang#117947 - Reflect rename of cabi_s390x.rs in rust-lang@030244c (renamed to [abi/call/s390x.rs](rust-lang@030244c#diff-20136d4a18fa0ef9bd4fc2e6f92e88daad6be88bfb156e5702af39ee87ca4879), and it is currently [still in the same location](https://github.com/rust-lang/rust/blob/9e394f551c050ff03c6fc57f190e0761cf0be6e8/compiler/rustc_target/src/abi/call/s390x.rs)). r? ``````@cuviper`````` ``````@rustbot`````` label +O-SystemZ
Configuration menu - View commit details
-
Copy full SHA for 18dfee0 - Browse repository at this point
Copy the full SHA 18dfee0View commit details -
Rollup merge of rust-lang#130879 - fmease:fix-diag-ice, r=compiler-er…
…rors Pass correct HirId to late_bound_vars in diagnostic code Fixes rust-lang#130858. Fixes rust-lang#125655. Fixes rust-lang#130391. Fixes rust-lang#130663. r? compiler-errors
Configuration menu - View commit details
-
Copy full SHA for ed902a8 - Browse repository at this point
Copy the full SHA ed902a8View commit details -
Rollup merge of rust-lang#130880 - RalfJung:const-hack, r=scottmcm
add missing FIXME(const-hack) r? ```@scottmcm```
Configuration menu - View commit details
-
Copy full SHA for 3d4d45f - Browse repository at this point
Copy the full SHA 3d4d45fView commit details