]> granicus.if.org Git - clang/commitdiff
Fix 80 column violations.
authorTed Kremenek <kremenek@apple.com>
Thu, 3 Sep 2009 03:02:58 +0000 (03:02 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 3 Sep 2009 03:02:58 +0000 (03:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80873 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/GRCoreEngine.h
lib/Analysis/GRExprEngine.cpp

index 4d624bcc0faa16dc37a5cfa3ae59a917a443c58f..72aaf6ebb50f9ad495e73d6bf7f981b23fae11d5 100644 (file)
@@ -177,8 +177,8 @@ public:
     return generateNodeInternal(PP, St, Pred);
   }
   
-  ExplodedNode* generateNode(const Stmt* S, const GRState* St, ExplodedNode* Pred,
-                       ProgramPoint::Kind K) {
+  ExplodedNode* generateNode(const Stmt *S, const GRState *St,
+                             ExplodedNode *Pred, ProgramPoint::Kind K) {
     HasGeneratedNode = true;
 
     if (PurgingDeadSymbols) 
@@ -187,7 +187,8 @@ public:
     return generateNodeInternal(S, St, Pred, K, Tag);
   }
   
-  ExplodedNode* generateNode(const Stmt* S, const GRState* St, ExplodedNode* Pred) {
+  ExplodedNode* generateNode(const Stmt *S, const GRState *St,
+                             ExplodedNode *Pred) {
     return generateNode(S, St, Pred, PointKind);
   }
 
@@ -222,8 +223,8 @@ public:
     return MakeNode(Dst, S, Pred, St, PointKind);
   }
   
-  ExplodedNode* MakeNode(ExplodedNodeSet& Dst, Stmt* S,
-                   ExplodedNode* Pred, const GRState* St, ProgramPoint::Kind K) {    
+  ExplodedNode* MakeNode(ExplodedNodeSet& Dst, Stmt* S, ExplodedNode* Pred,
+                         const GRState* St, ProgramPoint::Kind K) {    
     
     const GRState* PredState = GetState(Pred);
         
index a36916ba2eb36b86c894aa65b3c4fb50926fb988..006af8c9ce58eed88e88c44025dadb945337285f 100644 (file)
@@ -2634,11 +2634,12 @@ void GRExprEngine::VisitAsmStmtHelperInputs(AsmStmt* A,
   
   ++I;
   
-  for (ExplodedNodeSet::iterator NI = Tmp.begin(), NE = Tmp.end(); NI != NE; ++NI)
+  for (ExplodedNodeSet::iterator NI = Tmp.begin(), NE = Tmp.end(); NI!=NE; ++NI)
     VisitAsmStmtHelperInputs(A, I, E, *NI, Dst);
 }
 
-void GRExprEngine::EvalReturn(ExplodedNodeSet& Dst, ReturnStmt* S, ExplodedNode* Pred) {
+void GRExprEngine::EvalReturn(ExplodedNodeSet& Dst, ReturnStmt* S,
+                              ExplodedNode* Pred) {
   assert (Builder && "GRStmtNodeBuilder must be defined.");
   
   unsigned size = Dst.size();  
@@ -2654,7 +2655,8 @@ void GRExprEngine::EvalReturn(ExplodedNodeSet& Dst, ReturnStmt* S, ExplodedNode*
     MakeNode(Dst, S, Pred, GetState(Pred));
 }
 
-void GRExprEngine::VisitReturnStmt(ReturnStmt* S, ExplodedNode* Pred, ExplodedNodeSet& Dst) {
+void GRExprEngine::VisitReturnStmt(ReturnStmt* S, ExplodedNode* Pred,
+                                   ExplodedNodeSet& Dst) {
 
   Expr* R = S->getRetValue();
   
@@ -2719,7 +2721,7 @@ void GRExprEngine::VisitBinaryOperator(BinaryOperator* B,
   else
     Visit(LHS, Pred, Tmp1);
 
-  for (ExplodedNodeSet::iterator I1=Tmp1.begin(), E1=Tmp1.end(); I1 != E1; ++I1) {
+  for (ExplodedNodeSet::iterator I1=Tmp1.begin(), E1=Tmp1.end(); I1!=E1; ++I1) {
 
     SVal LeftV = (*I1)->getState()->getSVal(LHS);
     
@@ -3129,7 +3131,8 @@ void GRExprEngine::ViewGraph(bool trim) {
 
     // Iterate through the reports and get their nodes.
     for (BugReporter::iterator I=BR.begin(), E=BR.end(); I!=E; ++I) {
-      for (BugType::const_iterator I2=(*I)->begin(), E2=(*I)->end(); I2!=E2; ++I2) {        
+      for (BugType::const_iterator I2=(*I)->begin(), E2=(*I)->end();
+           I2!=E2; ++I2) {        
         const BugReportEquivClass& EQ = *I2;
         const BugReport &R = **EQ.begin();
         ExplodedNode *N = const_cast<ExplodedNode*>(R.getEndNode());