From: Zhongxing Xu Date: Fri, 20 Nov 2009 04:09:56 +0000 (+0000) Subject: No need to pass the state argument explicitly. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=04b826daa7d5e81d163adc10bf23248caedc99df;p=clang No need to pass the state argument explicitly. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89447 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/PathSensitive/Checker.h b/include/clang/Analysis/PathSensitive/Checker.h index b7ed20fab2..b1187214ab 100644 --- a/include/clang/Analysis/PathSensitive/Checker.h +++ b/include/clang/Analysis/PathSensitive/Checker.h @@ -157,7 +157,7 @@ private: 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); }