]> granicus.if.org Git - clang/commitdiff
Fix the clang build after Zhongxing Xu's commit.
authorJohn McCall <rjmccall@apple.com>
Thu, 16 Sep 2010 03:09:43 +0000 (03:09 +0000)
committerJohn McCall <rjmccall@apple.com>
Thu, 16 Sep 2010 03:09:43 +0000 (03:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114059 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/FlowSensitive/DataflowSolver.h

index b8cdaf02901971da8d6d57edcd284b8c138ea3b9..2d61ecaef2ef0b87d0da6a265e96023091b069e9 100644 (file)
@@ -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());
     }
   }