[cfe-commits] r89447 - /cfe/trunk/include/clang/Analysis/PathSensitive/Checker.h

Zhongxing Xu xuzhongxing at gmail.com
Thu Nov 19 20:09:56 PST 2009


Author: zhongxingxu
Date: Thu Nov 19 22:09:56 2009
New Revision: 89447

URL: http://llvm.org/viewvc/llvm-project?rev=89447&view=rev
Log:
No need to pass the state argument explicitly.

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

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

==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/Checker.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/Checker.h Thu Nov 19 22:09:56 2009
@@ -157,7 +157,7 @@
                           GRExprEngine &Eng, const Stmt *S, ExplodedNode *Pred,
                           SymbolReaper &SymReaper, void *tag) {
     CheckerContext C(Dst, Builder, Eng, Pred, tag, 
-                     ProgramPoint::PostPurgeDeadSymbolsKind, Pred->getState());
+                     ProgramPoint::PostPurgeDeadSymbolsKind);
     EvalDeadSymbols(C, S, SymReaper);
   }
 





More information about the cfe-commits mailing list