aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2010-09-16 03:09:43 +0000
committerJohn McCall <rjmccall@apple.com>2010-09-16 03:09:43 +0000
commit90392b21e3a0571af6db6ba58951723b8b570cb0 (patch)
tree5b8ebb3882bfe8af56c946203d8227e3df83043e
parent9497a73ad0d54859edbf48beb93ebb19a7ae50c9 (diff)
Fix the clang build after Zhongxing Xu's commit.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114059 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Analysis/FlowSensitive/DataflowSolver.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/Analysis/FlowSensitive/DataflowSolver.h b/include/clang/Analysis/FlowSensitive/DataflowSolver.h
index b8cdaf0290..2d61ecaef2 100644
--- a/include/clang/Analysis/FlowSensitive/DataflowSolver.h
+++ b/include/clang/Analysis/FlowSensitive/DataflowSolver.h
@@ -274,8 +274,8 @@ private:
dataflow::forward_analysis_tag) {
for (StmtItr I=ItrTraits::StmtBegin(B), E=ItrTraits::StmtEnd(B); I!=E;++I) {
- CFGElement E = *I;
- if (CFGStmt S = E.getAs<CFGStmt>())
+ CFGElement El = *I;
+ if (CFGStmt S = El.getAs<CFGStmt>())
ProcessStmt(S, recordStmtValues, AnalysisDirTag());
}
@@ -288,8 +288,8 @@ private:
TF.VisitTerminator(const_cast<CFGBlock*>(B));
for (StmtItr I=ItrTraits::StmtBegin(B), E=ItrTraits::StmtEnd(B); I!=E;++I) {
- CFGElement E = *I;
- if (CFGStmt S = E.getAs<CFGStmt>())
+ CFGElement El = *I;
+ if (CFGStmt S = El.getAs<CFGStmt>())
ProcessStmt(S, recordStmtValues, AnalysisDirTag());
}
}