diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-01-14 20:34:10 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-01-14 20:34:10 +0000 |
commit | 7c211625e0d92b6367e9aea14046672978460bea (patch) | |
tree | 6a9179a7f953a354451f14e76195fac26c47e302 /clang/lib/StaticAnalyzer/RegionStore.cpp | |
parent | 95d874fa5d6dde34ec042c5bff08cea70ea8501d (diff) | |
download | bcm5719-llvm-7c211625e0d92b6367e9aea14046672978460bea.tar.gz bcm5719-llvm-7c211625e0d92b6367e9aea14046672978460bea.zip |
Rename 'EnterStackFrame()' to 'enterStackFrame()'.
llvm-svn: 123459
Diffstat (limited to 'clang/lib/StaticAnalyzer/RegionStore.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/RegionStore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/StaticAnalyzer/RegionStore.cpp b/clang/lib/StaticAnalyzer/RegionStore.cpp index 0dbf97caf94..7760ec006a1 100644 --- a/clang/lib/StaticAnalyzer/RegionStore.cpp +++ b/clang/lib/StaticAnalyzer/RegionStore.cpp @@ -362,7 +362,7 @@ public: // Part of public interface to class. SymbolReaper& SymReaper, llvm::SmallVectorImpl<const MemRegion*>& RegionRoots); - Store EnterStackFrame(const GRState *state, const StackFrameContext *frame); + Store enterStackFrame(const GRState *state, const StackFrameContext *frame); //===------------------------------------------------------------------===// // Region "extents". @@ -1865,7 +1865,7 @@ Store RegionStoreManager::RemoveDeadBindings(Store store, } -Store RegionStoreManager::EnterStackFrame(const GRState *state, +Store RegionStoreManager::enterStackFrame(const GRState *state, const StackFrameContext *frame) { FunctionDecl const *FD = cast<FunctionDecl>(frame->getDecl()); FunctionDecl::param_const_iterator PI = FD->param_begin(), |