Skip to content

Commit f8fea37

Browse files
committed
Nit.
1 parent 7c24100 commit f8fea37

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/meta_schedule/space_generator/post_order_apply.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ class BlockCollector : public tir::StmtVisitor {
4040
blocks_to_collect_.clear();
4141
VisitStmt(func->body);
4242
for (const String& block_name : blocks_to_collect_) {
43-
tir::BlockRV block_rv = sch_->GetBlock(block_name, func_name_);
44-
results_.push_back(block_rv);
43+
results_.push_back(sch_->GetBlock(block_name, func_name_));
4544
}
4645
}
4746
}

0 commit comments

Comments
 (0)