Rename 'EnterStackFrame()' to 'enterStackFrame()'.
llvm-svn: 123459
diff --git a/clang/lib/StaticAnalyzer/GRState.cpp b/clang/lib/StaticAnalyzer/GRState.cpp
index 55a2eb7..9c578dd 100644
--- a/clang/lib/StaticAnalyzer/GRState.cpp
+++ b/clang/lib/StaticAnalyzer/GRState.cpp
@@ -149,8 +149,8 @@
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);
}