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;
   }
 }