diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-11-20 04:09:56 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-11-20 04:09:56 +0000 |
commit | 04b826daa7d5e81d163adc10bf23248caedc99df (patch) | |
tree | 4d8577516c1a7cd51cdf41d1bf7e761bf7d47a58 | |
parent | 00b1ad2d56f3e39f95c3f61bf511a531ab6a4fa5 (diff) |
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
-rw-r--r-- | include/clang/Analysis/PathSensitive/Checker.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |