Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jim19930609 committed Jan 5, 2023
1 parent 46d3580 commit 2bbaa95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taichi/ir/frontend_ir.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ FrontendSNodeOpStmt::FrontendSNodeOpStmt(ASTBuilder *builder,
FrontendReturnStmt::FrontendReturnStmt(ASTBuilder *builder,
const ExprGroup &group) {
values = group;
auto expanded_exprs = builder->expand_expr(values.exprs);
auto expanded_exprs = builder->expand_exprs(values.exprs);
values.exprs = std::move(expanded_exprs);
}

Expand Down

0 comments on commit 2bbaa95

Please sign in to comment.