forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
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#88400 - Mark-Simulacrum:beta-next, r=Mark-Sim…
…ulacrum [beta] backports This PR rolls up a number of beta backports: * Split critical edge targeting the start block rust-lang#88124 * Make BuildHasher object safe rust-lang#88031 * Fix Windows Command::env("PATH") rust-lang#87863 * Do not ICE on HIR based WF check when involving lifetimes rust-lang#87811 * Update compiler_builtins to fix i128 shift/mul on thumbv6m rust-lang#87633
- Loading branch information
Showing
10 changed files
with
131 additions
and
17 deletions.
There are no files selected for viewing
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
35 changes: 35 additions & 0 deletions
35
src/test/ui/codegen/issue-88043-bb-does-not-have-terminator.rs
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,35 @@ | ||
// build-pass | ||
// compile-flags: -Copt-level=0 | ||
|
||
// Regression test for #88043: LLVM crash when the RemoveZsts mir-opt pass is enabled. | ||
// We should not see the error: | ||
// `Basic Block in function '_ZN4main10take_until17h0067b8a660429bc9E' does not have terminator!` | ||
|
||
fn bump() -> Option<usize> { | ||
unreachable!() | ||
} | ||
|
||
fn take_until(terminate: impl Fn() -> bool) { | ||
loop { | ||
if terminate() { | ||
return; | ||
} else { | ||
bump(); | ||
} | ||
} | ||
} | ||
|
||
// CHECK-LABEL: @main | ||
fn main() { | ||
take_until(|| true); | ||
f(None); | ||
} | ||
|
||
fn f(_a: Option<String>) -> Option<u32> { | ||
loop { | ||
g(); | ||
() | ||
} | ||
} | ||
|
||
fn g() -> Option<u32> { None } |
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,14 @@ | ||
// Regression test for #87549. | ||
// compile-flags: -C incremental=tmp/wf/hir-wf-check-erase-regions | ||
|
||
pub struct Table<T, const N: usize>([Option<T>; N]); | ||
|
||
impl<'a, T, const N: usize> IntoIterator for &'a Table<T, N> { | ||
type IntoIter = std::iter::Flatten<std::slice::Iter<'a, T>>; //~ ERROR `&T` is not an iterator | ||
type Item = &'a T; | ||
|
||
fn into_iter(self) -> Self::IntoIter { //~ ERROR `&T` is not an iterator | ||
unimplemented!() | ||
} | ||
} | ||
fn main() {} |
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,31 @@ | ||
error[E0277]: `&T` is not an iterator | ||
--> $DIR/hir-wf-check-erase-regions.rs:7:5 | ||
| | ||
LL | type IntoIter = std::iter::Flatten<std::slice::Iter<'a, T>>; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `&T` is not an iterator | ||
| | ||
::: $SRC_DIR/core/src/iter/adapters/flatten.rs:LL:COL | ||
| | ||
LL | pub struct Flatten<I: Iterator<Item: IntoIterator>> { | ||
| ------------ required by this bound in `Flatten` | ||
| | ||
= help: the trait `Iterator` is not implemented for `&T` | ||
= note: required because of the requirements on the impl of `IntoIterator` for `&T` | ||
|
||
error[E0277]: `&T` is not an iterator | ||
--> $DIR/hir-wf-check-erase-regions.rs:10:27 | ||
| | ||
LL | fn into_iter(self) -> Self::IntoIter { | ||
| ^^^^^^^^^^^^^^ `&T` is not an iterator | ||
| | ||
::: $SRC_DIR/core/src/iter/adapters/flatten.rs:LL:COL | ||
| | ||
LL | pub struct Flatten<I: Iterator<Item: IntoIterator>> { | ||
| ------------ required by this bound in `Flatten` | ||
| | ||
= help: the trait `Iterator` is not implemented for `&T` | ||
= note: required because of the requirements on the impl of `IntoIterator` for `&T` | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0277`. |