diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-08-27 22:17:37 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-08-27 22:17:37 +0000 |
commit | 8e0293406f9d62a293be6be3b1fb89d359f5ea40 (patch) | |
tree | 761eccc575eb46912334ba537ed905667d8c4fc2 /lib/Analysis/GRState.cpp | |
parent | 6d2c657b528d9ac1bacd382281f0bc49975aa89a (diff) |
Rename 'bindExpr' to 'BindExpr'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80294 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRState.cpp')
-rw-r--r-- | lib/Analysis/GRState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRState.cpp b/lib/Analysis/GRState.cpp index a2cfdeb96c..74b493dc55 100644 --- a/lib/Analysis/GRState.cpp +++ b/lib/Analysis/GRState.cpp @@ -85,7 +85,7 @@ SVal GRState::getSValAsScalarOrLoc(const MemRegion *R) const { } -const GRState *GRState::bindExpr(const Stmt* Ex, SVal V, bool Invalidate) const{ +const GRState *GRState::BindExpr(const Stmt* Ex, SVal V, bool Invalidate) const{ Environment NewEnv = getStateManager().EnvMgr.BindExpr(Env, Ex, V, Invalidate); if (NewEnv == Env) |