Skip to content
Snippets Groups Projects
Commit 8d4dcc54 authored by Ted Kremenek's avatar Ted Kremenek
Browse files

Minor performance fix in transfer function logic. Previously we

called VisitStmt, but VisitChildren is more direct and creates less
boilerplate logic.

llvm-svn: 42110
parent 27116107
No related branches found
No related tags found
No related merge requests found
......@@ -159,7 +159,7 @@ bool TransferFuncs::VisitDeclStmt(DeclStmt* S) {
}
bool TransferFuncs::VisitCallExpr(CallExpr* C) {
VisitStmt(C);
VisitChildren(C);
return Initialized();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment