Skip to content

Commit

Permalink
Unbreak memoization
Browse files Browse the repository at this point in the history
It wasn't looking into Call nodes
  • Loading branch information
abadams committed May 6, 2016
1 parent c46e054 commit 00f68fe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Memoization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ class FindParameterDependencies : public IRGraphVisitor {
Function fn(call->func);
visit_function(fn);
IRGraphVisitor::visit(call);
} else {
IRGraphVisitor::visit(call);
}
}

Expand Down

0 comments on commit 00f68fe

Please sign in to comment.