artiq: Use gen_block when generating "with sequential"

pull/347/head
David Mak 2023-10-19 11:54:56 +08:00
parent f75ae78677
commit 8373a6cb0f
1 changed files with 1 additions and 6 deletions

View File

@ -215,12 +215,7 @@ impl<'b> CodeGenerator for ArtiqCodeGenerator<'b> {
return Ok(());
} else if id == &"sequential".into() {
let start = self.start.take();
for stmt in body.iter() {
self.gen_stmt(ctx, stmt)?;
if ctx.is_terminated() {
break;
}
}
gen_block(self, ctx, body.iter())?;
self.start = start;
return Ok(());
}