diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-10-17 20:49:23 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-10-17 20:49:23 +0000 |
commit | bf4e419d996bf42e4933cada610d973a0fcc40eb (patch) | |
tree | 0ccebebd40dc073776f5907f0f3129219db626c0 /lib/Analysis/GRCoreEngine.cpp | |
parent | 63ffb78cf4bd0aa8fa149740637cea6c1e08b969 (diff) |
Fixed an elusive caching bug in ExplodedGraph construction when a PostStmtKind was used instead of a PostStoreKind.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57719 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRCoreEngine.cpp')
-rw-r--r-- | lib/Analysis/GRCoreEngine.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Analysis/GRCoreEngine.cpp b/lib/Analysis/GRCoreEngine.cpp index 84a8d5522d..99e2a7f06e 100644 --- a/lib/Analysis/GRCoreEngine.cpp +++ b/lib/Analysis/GRCoreEngine.cpp @@ -318,6 +318,9 @@ static inline ProgramPoint GetPostLoc(Stmt* S, ProgramPoint::Kind K) { case ProgramPoint::PostLoadKind: return PostLoad(S); + case ProgramPoint::PostStoreKind: + return PostStore(S); + case ProgramPoint::PostPurgeDeadSymbolsKind: return PostPurgeDeadSymbols(S); } |