Skip to content

Commit fbbd353

Browse files
authored
Unrolled build for rust-lang#117438
Rollup merge of rust-lang#117438 - cjgillot:deterministic-error, r=oli-obk Do not ICE on constant evaluation failure in GVN. Fixes rust-lang#117362
2 parents 22b2712 + 5b7cc9d commit fbbd353

File tree

4 files changed

+30
-5
lines changed

4 files changed

+30
-5
lines changed

compiler/rustc_middle/src/mir/consts.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -520,11 +520,13 @@ impl<'tcx> Const<'tcx> {
520520
// types are fine though.
521521
ty::ConstKind::Value(_) => c.ty().is_primitive(),
522522
ty::ConstKind::Unevaluated(..) | ty::ConstKind::Expr(..) => false,
523+
// This can happen if evaluation of a constant failed. The result does not matter
524+
// much since compilation is doomed.
525+
ty::ConstKind::Error(..) => false,
523526
// Should not appear in runtime MIR.
524527
ty::ConstKind::Infer(..)
525528
| ty::ConstKind::Bound(..)
526-
| ty::ConstKind::Placeholder(..)
527-
| ty::ConstKind::Error(..) => bug!(),
529+
| ty::ConstKind::Placeholder(..) => bug!(),
528530
},
529531
Const::Unevaluated(..) => false,
530532
// If the same slice appears twice in the MIR, we cannot guarantee that we will
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
error[E0080]: evaluation of `<A<()> as Foo<()>>::BAR` failed
2+
--> $DIR/issue-50814-2.rs:16:24
3+
|
4+
LL | const BAR: usize = [5, 6, 7][T::BOO];
5+
| ^^^^^^^^^^^^^^^^^ index out of bounds: the length is 3 but the index is 42
6+
7+
note: erroneous constant encountered
8+
--> $DIR/issue-50814-2.rs:20:6
9+
|
10+
LL | &<A<T> as Foo<T>>::BAR
11+
| ^^^^^^^^^^^^^^^^^^^^^
12+
13+
note: erroneous constant encountered
14+
--> $DIR/issue-50814-2.rs:20:5
15+
|
16+
LL | &<A<T> as Foo<T>>::BAR
17+
| ^^^^^^^^^^^^^^^^^^^^^^
18+
19+
error: aborting due to previous error
20+
21+
For more information about this error, try `rustc --explain E0080`.

tests/ui/consts/const-eval/issue-50814-2.stderr tests/ui/consts/const-eval/issue-50814-2.normal.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
error[E0080]: evaluation of `<A<()> as Foo<()>>::BAR` failed
2-
--> $DIR/issue-50814-2.rs:14:24
2+
--> $DIR/issue-50814-2.rs:16:24
33
|
44
LL | const BAR: usize = [5, 6, 7][T::BOO];
55
| ^^^^^^^^^^^^^^^^^ index out of bounds: the length is 3 but the index is 42
66

77
note: erroneous constant encountered
8-
--> $DIR/issue-50814-2.rs:18:6
8+
--> $DIR/issue-50814-2.rs:20:6
99
|
1010
LL | &<A<T> as Foo<T>>::BAR
1111
| ^^^^^^^^^^^^^^^^^^^^^
1212

1313
note: the above error was encountered while instantiating `fn foo::<()>`
14-
--> $DIR/issue-50814-2.rs:30:22
14+
--> $DIR/issue-50814-2.rs:32:22
1515
|
1616
LL | println!("{:x}", foo::<()>() as *const usize as usize);
1717
| ^^^^^^^^^^^

tests/ui/consts/const-eval/issue-50814-2.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
// build-fail
2+
// revisions: normal mir-opt
3+
// [mir-opt]compile-flags: -Zmir-opt-level=4
24

35
trait C {
46
const BOO: usize;

0 commit comments

Comments
 (0)