Skip to content

Commit 1788d49

Browse files
authored
Rollup merge of #111250 - spastorino:smir-terminator-2, r=oli-obk
Add Terminator conversion from MIR to SMIR, part #2 r? `@oli-obk`
2 parents 3572d74 + 5749bd0 commit 1788d49

File tree

1 file changed

+1
-4
lines changed
  • compiler/rustc_smir/src/rustc_smir

1 file changed

+1
-4
lines changed

compiler/rustc_smir/src/rustc_smir/mod.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -330,10 +330,7 @@ fn rustc_terminator_to_terminator(
330330
target: target.as_usize(),
331331
unwind: rustc_unwind_to_unwind(unwind),
332332
},
333-
Yield { .. } => todo!(),
334-
GeneratorDrop => Terminator::GeneratorDrop,
335-
FalseEdge { .. } => todo!(),
336-
FalseUnwind { .. } => todo!(),
337333
InlineAsm { .. } => todo!(),
334+
Yield { .. } | GeneratorDrop | FalseEdge { .. } | FalseUnwind { .. } => unreachable!(),
338335
}
339336
}

0 commit comments

Comments
 (0)