aboutsummaryrefslogtreecommitdiff
path: root/include/clang/StaticAnalyzer
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-02-24 01:05:37 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-02-24 01:05:37 +0000
commit64be13795a9b5b25de6b151551a2f5ef2bab353c (patch)
treea4746c86b16c48c869755cf99c9b0b9f38b5b26e /include/clang/StaticAnalyzer
parent699bbf9f3fa67ededdd762d2637d72d2a4a88b7a (diff)
[analyzer] Remove unused functions from CheckerManager.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126352 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/StaticAnalyzer')
-rw-r--r--include/clang/StaticAnalyzer/Core/CheckerManager.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/clang/StaticAnalyzer/Core/CheckerManager.h b/include/clang/StaticAnalyzer/Core/CheckerManager.h
index 738661512e..57a826fba0 100644
--- a/include/clang/StaticAnalyzer/Core/CheckerManager.h
+++ b/include/clang/StaticAnalyzer/Core/CheckerManager.h
@@ -113,11 +113,6 @@ public:
CHECKER::_register(checker, *this);
}
- typedef void (*RegisterToEngFunc)(ExprEngine &Eng);
- void addCheckerRegisterFunction(RegisterToEngFunc fn) {
- Funcs.push_back(fn);
- }
-
//===----------------------------------------------------------------------===//
// Functions for running checkers for AST traversing..
//===----------------------------------------------------------------------===//
@@ -216,10 +211,6 @@ public:
const CallExpr *CE, ExprEngine &Eng,
GraphExpander *defaultEval = 0);
- // FIXME: Temporary until checker running is moved completely into
- // CheckerManager.
- void registerCheckersToEngine(ExprEngine &eng);
-
//===----------------------------------------------------------------------===//
// Internal registration functions for AST traversing.
//===----------------------------------------------------------------------===//
@@ -321,8 +312,6 @@ private:
std::vector<CheckerDtor> CheckerDtors;
- std::vector<RegisterToEngFunc> Funcs;
-
struct DeclCheckerInfo {
CheckDeclFunc CheckFn;
HandlesDeclFunc IsForDeclFn;