[cfe-commits] r47076 - /cfe/trunk/Analysis/GRExprEngine.cpp

Ted Kremenek kremenek at apple.com
Wed Feb 13 10:06:45 PST 2008


Author: kremenek
Date: Wed Feb 13 12:06:44 2008
New Revision: 47076

URL: http://llvm.org/viewvc/llvm-project?rev=47076&view=rev
Log:
Fixed 80 col violations.

Modified:
    cfe/trunk/Analysis/GRExprEngine.cpp

Modified: cfe/trunk/Analysis/GRExprEngine.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Analysis/GRExprEngine.cpp?rev=47076&r1=47075&r2=47076&view=diff

==============================================================================
--- cfe/trunk/Analysis/GRExprEngine.cpp (original)
+++ cfe/trunk/Analysis/GRExprEngine.cpp Wed Feb 13 12:06:44 2008
@@ -1,4 +1,4 @@
-//===-- GRExprEngine.cpp - Simple, Path-Sens. Constant Prop. ------*- C++ -*-==//
+//===-- GRExprEngine.cpp - Simple, Path-Sens. Constant Prop. -----*- C++ -*-==//
 //
 //                     The LLVM Compiler Infrastructure
 //
@@ -102,8 +102,8 @@
   ///  Expr* in the CFG.  Used to prune out dead state.
   LiveVariables Liveness;
 
-  /// Builder - The current GRStmtNodeBuilder which is used when building the nodes
-  ///  for a given statement.
+  /// Builder - The current GRStmtNodeBuilder which is used when building the
+  ///  nodes for a given statement.
   StmtNodeBuilder* Builder;
   
   /// StateMgr - Object that manages the data for all created states.
@@ -572,7 +572,7 @@
     Nodify(Dst, S, Pred, *I);
 }
 
-void GRExprEngine::VisitDeclRefExpr(DeclRefExpr* D, NodeTy* Pred, NodeSet& Dst) {
+void GRExprEngine::VisitDeclRefExpr(DeclRefExpr* D, NodeTy* Pred, NodeSet& Dst){
   if (D != CurrentStmt) {
     Dst.Add(Pred); // No-op. Simply propagate the current state unchanged.
     return;
@@ -1234,7 +1234,7 @@
   }
     
     
-  static void PrintSubExprBindings(std::ostream& Out, GRExprEngine::StateTy St) {
+  static void PrintSubExprBindings(std::ostream& Out, GRExprEngine::StateTy St){
     
     bool isFirst = true;
     
@@ -1255,7 +1255,7 @@
     }
   }
     
-  static void PrintBlkExprBindings(std::ostream& Out, GRExprEngine::StateTy St) {
+  static void PrintBlkExprBindings(std::ostream& Out, GRExprEngine::StateTy St){
         
     bool isFirst = true;
 





More information about the cfe-commits mailing list