diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-02-13 18:06:44 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-02-13 18:06:44 +0000 |
commit | 44842c2d4485cc6785ebd72c3f4e53976ce9990e (patch) | |
tree | abc1a0805b9781139f86909ba7e303280ff10318 | |
parent | 438757c55f6d9f4042724a91fccd0d7ac908d5da (diff) |
Fixed 80 col violations.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47076 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Analysis/GRExprEngine.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Analysis/GRExprEngine.cpp b/Analysis/GRExprEngine.cpp index fb1b2ed394..ed4e17c1b2 100644 --- a/Analysis/GRExprEngine.cpp +++ b/Analysis/GRExprEngine.cpp @@ -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 @@ protected: /// 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 @@ void GRExprEngine::Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, 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 @@ struct VISIBILITY_HIDDEN DOTGraphTraits<GRExprEngine::NodeTy*> : } - 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 @@ struct VISIBILITY_HIDDEN DOTGraphTraits<GRExprEngine::NodeTy*> : } } - static void PrintBlkExprBindings(std::ostream& Out, GRExprEngine::StateTy St) { + static void PrintBlkExprBindings(std::ostream& Out, GRExprEngine::StateTy St){ bool isFirst = true; |