]> granicus.if.org Git - clang/commitdiff
Return the original state by default.
authorZhongxing Xu <xuzhongxing@gmail.com>
Tue, 13 Oct 2009 06:07:58 +0000 (06:07 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Tue, 13 Oct 2009 06:07:58 +0000 (06:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83949 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/Store.h

index c27443572814d3819f5bbcb438af2aec1e97d8fd..c9713c0b36a0d9cbed48ce5176bb0fae14764c5c 100644 (file)
@@ -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,