Skip to content

Commit 8c0cbd8

Browse files
committed
Do not ICE when failing to normalize in ConstProp.
1 parent 0fbfc3e commit 8c0cbd8

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

compiler/rustc_const_eval/src/interpret/eval_context.rs

+2-9
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use either::{Either, Left, Right};
77
use rustc_hir::{self as hir, def_id::DefId, definitions::DefPathData};
88
use rustc_index::vec::IndexVec;
99
use rustc_middle::mir;
10-
use rustc_middle::mir::interpret::{ErrorHandled, InterpError, InvalidProgramInfo};
10+
use rustc_middle::mir::interpret::{ErrorHandled, InterpError};
1111
use rustc_middle::ty::layout::{
1212
self, FnAbiError, FnAbiOfHelpers, FnAbiRequest, LayoutError, LayoutOf, LayoutOfHelpers,
1313
TyAndLayout,
@@ -508,14 +508,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
508508
frame
509509
.instance
510510
.try_subst_mir_and_normalize_erasing_regions(*self.tcx, self.param_env, value)
511-
.map_err(|e| {
512-
self.tcx.sess.delay_span_bug(
513-
self.cur_span(),
514-
format!("failed to normalize {}", e.get_type_for_failure()).as_str(),
515-
);
516-
517-
InterpError::InvalidProgram(InvalidProgramInfo::TooGeneric)
518-
})
511+
.map_err(|_| err_inval!(TooGeneric))
519512
}
520513

521514
/// The `substs` are assumed to already be in our interpreter "universe" (param_env).

tests/ui/associated-types/issue-67684.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
// check-pass
1+
// revisions: check build
2+
// [check]check-pass
3+
//
4+
// This second configuration aims to verify that we do not ICE in ConstProp because of
5+
// normalization failure.
6+
// [build]build-pass
7+
// [build]compile-flags: -Zmir-opt-level=3 --emit=mir
28

39
#![allow(dead_code)]
410

0 commit comments

Comments
 (0)