aboutsummaryrefslogtreecommitdiff
path: root/lib/StaticAnalyzer/GRState.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2011-01-14 20:34:10 +0000
committerTed Kremenek <kremenek@apple.com>2011-01-14 20:34:10 +0000
commit2ccf047adf877f5e821210b1ce1a2c8289acadc0 (patch)
treeacdf0d5323087db0b173a8732ad0d06645e2b501 /lib/StaticAnalyzer/GRState.cpp
parentd4f482aa4d77ed2fa6dfbe60ff33599419680818 (diff)
Rename 'EnterStackFrame()' to 'enterStackFrame()'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123459 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/GRState.cpp')
-rw-r--r--lib/StaticAnalyzer/GRState.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/StaticAnalyzer/GRState.cpp b/lib/StaticAnalyzer/GRState.cpp
index 55a2eb7eba..9c578dda68 100644
--- a/lib/StaticAnalyzer/GRState.cpp
+++ b/lib/StaticAnalyzer/GRState.cpp
@@ -149,8 +149,8 @@ const GRState *GRState::unbindLoc(Loc LV) const {
return makeWithStore(NewStore);
}
-const GRState *GRState::EnterStackFrame(const StackFrameContext *frame) const {
- Store new_store = getStateManager().StoreMgr->EnterStackFrame(this, frame);
+const GRState *GRState::enterStackFrame(const StackFrameContext *frame) const {
+ Store new_store = getStateManager().StoreMgr->enterStackFrame(this, frame);
return makeWithStore(new_store);
}