Skip to content

Commit 698acc6

Browse files
committed
Add GeneratorDrop terminator to SMIR
1 parent 4b85bea commit 698acc6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

compiler/rustc_smir/src/rustc_smir/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ fn rustc_terminator_to_terminator(
282282
unwind: rustc_unwind_to_unwind(unwind),
283283
},
284284
Yield { .. } => todo!(),
285-
GeneratorDrop => todo!(),
285+
GeneratorDrop => Terminator::GeneratorDrop,
286286
FalseEdge { .. } => todo!(),
287287
FalseUnwind { .. } => todo!(),
288288
InlineAsm { .. } => todo!(),

compiler/rustc_smir/src/stable_mir/mir/body.rs

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ pub enum Terminator {
4242
target: usize,
4343
unwind: UnwindAction,
4444
},
45+
GeneratorDrop,
4546
}
4647

4748
#[derive(Clone, Debug)]

0 commit comments

Comments
 (0)