commit | cee54de36aa4d3c0783df1b97c59404b1abc1e62 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Wed Sep 12 20:11:39 2007 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Wed Sep 12 20:11:39 2007 +0000 |
tree | e1d22dd03ba980407b15ffdfe5f621ed0a8e5319 | |
parent | de8e2bcadc2c44da562217ffea62e52014d533f9 [diff] [blame] |
Fixed recursion bug: should call Visit on child instead of VisitStmt. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41888 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Analysis/LiveVariables.cpp b/Analysis/LiveVariables.cpp index b6079e0..8e6c6e0 100644 --- a/Analysis/LiveVariables.cpp +++ b/Analysis/LiveVariables.cpp
@@ -196,7 +196,7 @@ break; default: - VisitStmt(U->getSubExpr()); + Visit(U->getSubExpr()); break; } }