forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#116569 - matthiaskrgr:rollup-ni0jdd6, r=matth…
…iaskrgr Rollup of 6 pull requests Successful merges: - rust-lang#115882 (improve the suggestion of `generic_bound_failure`) - rust-lang#116537 (Fix suggestion span involving wrongly placed generic arg on variant) - rust-lang#116543 (In smir `find_crates` returns `Vec<Crate>` instead of `Option<Crate>`) - rust-lang#116549 (Simplify some mir passes by using let chains) - rust-lang#116556 (Sync rustc_codegen_cranelift) - rust-lang#116561 (Add a test for fixed ICE) r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
141 changed files
with
2,820 additions
and
1,547 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
24 changes: 0 additions & 24 deletions
24
compiler/rustc_codegen_cranelift/patches/0001-portable-simd-Allow-internal-features.patch
This file was deleted.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
...n_cranelift/patches/0001-regex-Ignore-test-which-gets-miscompiled-with-llvm-sysroot.patch
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 5d4afb8d807d181038b6a004d17ed055a8d191b2 Mon Sep 17 00:00:00 2001 | ||
From: bjorn3 <[email protected]> | ||
Date: Mon, 2 Oct 2023 13:59:00 +0000 | ||
Subject: [PATCH] Ignore test which gets miscompiled with llvm sysroot | ||
|
||
--- | ||
regex-automata/src/util/pool.rs | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
diff --git a/regex-automata/src/util/pool.rs b/regex-automata/src/util/pool.rs | ||
index c03d7b0..28b233b 100644 | ||
--- a/regex-automata/src/util/pool.rs | ||
+++ b/regex-automata/src/util/pool.rs | ||
@@ -1081,6 +1081,8 @@ mod tests { | ||
// into the pool. This in turn resulted in this test producing a data race. | ||
#[cfg(feature = "std")] | ||
#[test] | ||
+ // FIXME(rustc_codegen_cranelift#1395) miscompilation of thread::scope with LLVM sysroot | ||
+ #[ignore] | ||
fn thread_owner_sync() { | ||
let pool = Pool::new(|| vec!['a']); | ||
{ | ||
-- | ||
2.34.1 | ||
|
This file contains 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
Oops, something went wrong.