We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b85bea commit 698acc6Copy full SHA for 698acc6
compiler/rustc_smir/src/rustc_smir/mod.rs
@@ -282,7 +282,7 @@ fn rustc_terminator_to_terminator(
282
unwind: rustc_unwind_to_unwind(unwind),
283
},
284
Yield { .. } => todo!(),
285
- GeneratorDrop => todo!(),
+ GeneratorDrop => Terminator::GeneratorDrop,
286
FalseEdge { .. } => todo!(),
287
FalseUnwind { .. } => todo!(),
288
InlineAsm { .. } => todo!(),
compiler/rustc_smir/src/stable_mir/mir/body.rs
@@ -42,6 +42,7 @@ pub enum Terminator {
42
target: usize,
43
unwind: UnwindAction,
44
45
+ GeneratorDrop,
46
}
47
48
#[derive(Clone, Debug)]
0 commit comments