Skip to content

Commit

Permalink
oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
AD1024 committed Aug 23, 2022
1 parent ff2b24e commit f727118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taichi/ir/control_flow_graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ void CFGNode::reaching_definition_analysis(bool after_lower_access) {
if (auto local_store = stmt->cast<LocalStoreStmt>()) {
if (auto dest = local_store->dest->cast<PtrOffsetStmt>()) {
if (auto data = get_store_forwarding_data(dest->origin, i)) {
data_source_ptrs = std::vector<Stmt *>(1, );
data_source_ptrs = std::vector<Stmt *>(1, data);
} else {
data_source_ptrs = std::vector<Stmt *>();
}
Expand Down

0 comments on commit f727118

Please sign in to comment.