Skip to content

Commit 990a395

Browse files
Prevent ICE on uninhabited MIR interpretation
1 parent e023158 commit 990a395

File tree

1 file changed

+6
-1
lines changed
  • compiler/rustc_mir/src/interpret

1 file changed

+6
-1
lines changed

compiler/rustc_mir/src/interpret/cast.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,14 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
139139

140140
// # First handle non-scalar source values.
141141

142-
// Handle cast from a univariant (ZST) enum.
142+
// Handle cast from a ZST enum (0 or 1 variants).
143143
match src.layout.variants {
144144
Variants::Single { index } => {
145+
if src.layout.abi.is_uninhabited() {
146+
// This is dead code, because an uninhabited enum is UB to
147+
// instantiate.
148+
throw_ub!(Unreachable);
149+
}
145150
if let Some(discr) = src.layout.ty.discriminant_for_variant(*self.tcx, index) {
146151
assert!(src.layout.is_zst());
147152
let discr_layout = self.layout_of(discr.ty)?;

0 commit comments

Comments
 (0)