aboutsummaryrefslogtreecommitdiff
path: root/lib/StaticAnalyzer/Checkers/ExprEngine.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/Checkers/ExprEngine.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/Checkers/ExprEngine.cpp')
-rw-r--r--lib/StaticAnalyzer/Checkers/ExprEngine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Checkers/ExprEngine.cpp b/lib/StaticAnalyzer/Checkers/ExprEngine.cpp
index 874e7a3064..381d81d59b 100644
--- a/lib/StaticAnalyzer/Checkers/ExprEngine.cpp
+++ b/lib/StaticAnalyzer/Checkers/ExprEngine.cpp
@@ -1481,7 +1481,7 @@ void ExprEngine::processSwitch(SwitchNodeBuilder& builder) {
}
void ExprEngine::processCallEnter(CallEnterNodeBuilder &B) {
- const GRState *state = B.getState()->EnterStackFrame(B.getCalleeContext());
+ const GRState *state = B.getState()->enterStackFrame(B.getCalleeContext());
B.generateNode(state);
}