aboutsummaryrefslogtreecommitdiff
path: root/lib/StaticAnalyzer/CFRefCount.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2011-01-11 02:34:45 +0000
committerTed Kremenek <kremenek@apple.com>2011-01-11 02:34:45 +0000
commite36de1fe51c39d9161915dd3dbef880954af6476 (patch)
treeaf3a0d8eb142238e2bf877e4e6c8ba4e3d2b7a29 /lib/StaticAnalyzer/CFRefCount.cpp
parent7d5c0c1273bdc1cb3dff1cb5a62d07b1439e82c7 (diff)
Rename misc. methods in GRSubEngine to start
with a lower-case letter. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123211 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/CFRefCount.cpp')
-rw-r--r--lib/StaticAnalyzer/CFRefCount.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/StaticAnalyzer/CFRefCount.cpp b/lib/StaticAnalyzer/CFRefCount.cpp
index 5fd223c471..6fda42cce7 100644
--- a/lib/StaticAnalyzer/CFRefCount.cpp
+++ b/lib/StaticAnalyzer/CFRefCount.cpp
@@ -95,13 +95,13 @@ class GenericNodeBuilder {
StmtNodeBuilder *SNB;
const Stmt *S;
const void *tag;
- EndPathNodeBuilder *ENB;
+ EndOfFunctionNodeBuilder *ENB;
public:
GenericNodeBuilder(StmtNodeBuilder &snb, const Stmt *s,
const void *t)
: SNB(&snb), S(s), tag(t), ENB(0) {}
- GenericNodeBuilder(EndPathNodeBuilder &enb)
+ GenericNodeBuilder(EndOfFunctionNodeBuilder &enb)
: SNB(0), S(0), tag(0), ENB(&enb) {}
ExplodedNode *MakeNode(const GRState *state, ExplodedNode *Pred) {
@@ -1718,7 +1718,7 @@ public:
// End-of-path.
virtual void evalEndPath(ExprEngine& Engine,
- EndPathNodeBuilder& Builder);
+ EndOfFunctionNodeBuilder& Builder);
virtual void evalDeadSymbols(ExplodedNodeSet& Dst,
ExprEngine& Engine,
@@ -3250,7 +3250,7 @@ CFRefCount::ProcessLeaks(const GRState * state,
}
void CFRefCount::evalEndPath(ExprEngine& Eng,
- EndPathNodeBuilder& Builder) {
+ EndOfFunctionNodeBuilder& Builder) {
const GRState *state = Builder.getState();
GenericNodeBuilder Bd(Builder);