emit_spirv: Jump to loop body with local variable

Silence unused variable warning
This commit is contained in:
ReinUsesLisp 2021-05-15 18:17:40 -03:00 committed by ameerj
parent 464f13fe0b
commit 38e7b8c805

View File

@ -136,7 +136,7 @@ void Traverse(EmitContext& ctx, IR::Program& program) {
const Id endloop_label{node.loop.merge->Definition<Id>()};
ctx.OpLoopMerge(endloop_label, continue_label, spv::LoopControlMask::MaskNone);
ctx.OpBranch(node.loop.body->Definition<Id>());
ctx.OpBranch(body_label);
break;
}
case IR::AbstractSyntaxNode::Type::Break: {