diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-10-13 06:07:58 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-10-13 06:07:58 +0000 |
commit | d6116cc4730245f09d458167aa94f2ea6e2b2b53 (patch) | |
tree | bc1f4ccee7f9720fe7ba75a58cfc9d00a4f4c21b | |
parent | 9329a5c2924bc2c6379d7c202a4b312321edd719 (diff) |
Return the original state by default.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83949 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathSensitive/Store.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Analysis/PathSensitive/Store.h b/include/clang/Analysis/PathSensitive/Store.h index c274435728..c9713c0b36 100644 --- a/include/clang/Analysis/PathSensitive/Store.h +++ b/include/clang/Analysis/PathSensitive/Store.h @@ -162,7 +162,7 @@ public: /// engine is about to execute into a callee. virtual const GRState *EnterStackFrame(const GRState *state, const StackFrameContext *frame) { - assert(0 && "EnterStackFrame() is not supported in this Store Model."); + return state; } virtual void print(Store store, llvm::raw_ostream& Out, |