]> granicus.if.org Git - clang/commitdiff
Tweak formatting and comments.
authorTed Kremenek <kremenek@apple.com>
Thu, 17 Dec 2009 20:10:17 +0000 (20:10 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 17 Dec 2009 20:10:17 +0000 (20:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91615 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/GRExprEngine.cpp

index 9405db7ca9b16c060e916be70c6a6cdf4d31df17..9b00d1e64aaeebd4316bc4591ceaef16fce54ac5 100644 (file)
@@ -1607,17 +1607,15 @@ void GRExprEngine::VisitCall(CallExpr* CE, ExplodedNode* Pred,
       WorkList.push_back(CallExprWLItem(Item.I, *NI));
   }
 
-  // Now process the call itself.  First evaluate the callee.
+  // Now process the call itself.
   ExplodedNodeSet DstTmp;
   Expr* Callee = CE->getCallee()->IgnoreParens();
   
   for (ExplodedNodeSet::iterator NI=ArgsEvaluated.begin(),
-                                 NE=ArgsEvaluated.end();
-       NI != NE; ++NI) {
-
+                                 NE=ArgsEvaluated.end(); NI != NE; ++NI) {
+    // Evaluate the callee.
     ExplodedNodeSet DstTmp2;
-    Visit(Callee, *NI, DstTmp2);
-    
+    Visit(Callee, *NI, DstTmp2);    
     // Perform the previsit of the CallExpr, storing the results in DstTmp.
     CheckerVisit(CE, DstTmp, DstTmp2, true);
   }