[cfe-commits] r83949 - /cfe/trunk/include/clang/Analysis/PathSensitive/Store.h

Zhongxing Xu xuzhongxing at gmail.com
Mon Oct 12 23:07:58 PDT 2009


Author: zhongxingxu
Date: Tue Oct 13 01:07:58 2009
New Revision: 83949

URL: http://llvm.org/viewvc/llvm-project?rev=83949&view=rev
Log:
Return the original state by default.

Modified:
    cfe/trunk/include/clang/Analysis/PathSensitive/Store.h

Modified: cfe/trunk/include/clang/Analysis/PathSensitive/Store.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/Store.h?rev=83949&r1=83948&r2=83949&view=diff

==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/Store.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/Store.h Tue Oct 13 01:07:58 2009
@@ -162,7 +162,7 @@
   /// 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,





More information about the cfe-commits mailing list