We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00c17d9 commit 896b02fCopy full SHA for 896b02f
1 file changed
src/tir/transforms/inject_virtual_thread.cc
@@ -333,6 +333,12 @@ class VTInjector : public StmtExprMutator {
333
}
334
335
336
+ // While
337
+ Stmt VisitStmt_(const WhileNode* op) final {
338
+ // TODO(masahi): Do we need a special handling for While nodes?
339
+ return StmtMutator::VisitStmt_(op);
340
+ }
341
+
342
// Seq
343
Stmt VisitStmt_(const SeqStmtNode* op) final {
344
ICHECK_EQ(max_loop_depth_, 0);
0 commit comments