diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-06-30 13:00:53 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-06-30 13:00:53 +0000 |
commit | 703db197e36af320f3612be16f276a4c01e8ef29 (patch) | |
tree | ad3e61890ec258eb37c5bf91a1879326e205cb56 /clang/lib/Analysis/LiveVariables.cpp | |
parent | e205d43c750f29bd36edc82d7cc7ea34c775e900 (diff) | |
download | bcm5719-llvm-703db197e36af320f3612be16f276a4c01e8ef29.tar.gz bcm5719-llvm-703db197e36af320f3612be16f276a4c01e8ef29.zip |
Instead of r74522, use another approach to fix xfail_regionstore_wine_crash.c.
Mark the super region of the binding of block level expr in the Environment
as live.
llvm-svn: 74525
Diffstat (limited to 'clang/lib/Analysis/LiveVariables.cpp')
-rw-r--r-- | clang/lib/Analysis/LiveVariables.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Analysis/LiveVariables.cpp b/clang/lib/Analysis/LiveVariables.cpp index b354566db02..aead7f43ad8 100644 --- a/clang/lib/Analysis/LiveVariables.cpp +++ b/clang/lib/Analysis/LiveVariables.cpp @@ -138,7 +138,6 @@ void TransferFuncs::Visit(Stmt *S) { else { // For block-level expressions, mark that they are live. LiveState(S,AD) = Alive; - StmtVisitor<TransferFuncs,void>::Visit(S); } } |