diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-02-17 21:39:17 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-02-17 21:39:17 +0000 |
commit | 507ff53e39e345e43cea08ab9abf803acba639b3 (patch) | |
tree | 845f1fcad79844113c10639a59b752bf9881d676 /clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp | |
parent | 7cc6d12ad0c963b27feccb35efb92c19f2420522 (diff) | |
download | bcm5719-llvm-507ff53e39e345e43cea08ab9abf803acba639b3.tar.gz bcm5719-llvm-507ff53e39e345e43cea08ab9abf803acba639b3.zip |
[analyzer] Pass CheckerManager to the registration functions.
llvm-svn: 125777
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp index a184dd46222..36e76d0d3ce 100644 --- a/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp @@ -12,6 +12,7 @@ //===----------------------------------------------------------------------===// #include "ClangSACheckers.h" +#include "clang/StaticAnalyzer/Core/CheckerManager.h" #include "clang/StaticAnalyzer/Core/BugReporter/BugType.h" #include "clang/StaticAnalyzer/Core/PathSensitive/CheckerVisitor.h" #include "clang/StaticAnalyzer/Core/PathSensitive/GRState.h" @@ -59,10 +60,14 @@ private: } // end anonymous namespace -void ento::registerChrootChecker(ExprEngine &Eng) { +static void RegisterChrootChecker(ExprEngine &Eng) { Eng.registerCheck(new ChrootChecker()); } +void ento::registerChrootChecker(CheckerManager &mgr) { + mgr.addCheckerRegisterFunction(RegisterChrootChecker); +} + bool ChrootChecker::evalCallExpr(CheckerContext &C, const CallExpr *CE) { const GRState *state = C.getState(); const Expr *Callee = CE->getCallee(); |