[cfe-commits] r114059 - /cfe/trunk/include/clang/Analysis/FlowSensitive/DataflowSolver.h

John McCall rjmccall at apple.com
Wed Sep 15 20:09:43 PDT 2010


Author: rjmccall
Date: Wed Sep 15 22:09:43 2010
New Revision: 114059

URL: http://llvm.org/viewvc/llvm-project?rev=114059&view=rev
Log:
Fix the clang build after Zhongxing Xu's commit.


Modified:
    cfe/trunk/include/clang/Analysis/FlowSensitive/DataflowSolver.h

Modified: cfe/trunk/include/clang/Analysis/FlowSensitive/DataflowSolver.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/FlowSensitive/DataflowSolver.h?rev=114059&r1=114058&r2=114059&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/FlowSensitive/DataflowSolver.h (original)
+++ cfe/trunk/include/clang/Analysis/FlowSensitive/DataflowSolver.h Wed Sep 15 22:09:43 2010
@@ -274,8 +274,8 @@
                     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 @@
     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());
     }
   }





More information about the cfe-commits mailing list