aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/LiveVariables.cpp
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2009-06-30 13:00:53 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2009-06-30 13:00:53 +0000
commitce2f9bd2bc7dd4e070d46114b6a921127bd1ca86 (patch)
tree3cb02e48231e56746c806ada19f8947dfe4a43ab /lib/Analysis/LiveVariables.cpp
parent7abe019c2840e3890993c879c65acde9ea316166 (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74525 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LiveVariables.cpp')
-rw-r--r--lib/Analysis/LiveVariables.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Analysis/LiveVariables.cpp b/lib/Analysis/LiveVariables.cpp
index b354566db0..aead7f43ad 100644
--- a/lib/Analysis/LiveVariables.cpp
+++ b/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);
}
}