aboutsummaryrefslogtreecommitdiff
path: root/lib/Checker/ManagerRegistry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Checker/ManagerRegistry.cpp')
-rw-r--r--lib/Checker/ManagerRegistry.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/Checker/ManagerRegistry.cpp b/lib/Checker/ManagerRegistry.cpp
new file mode 100644
index 000000000000..d11a997cc0f6
--- /dev/null
+++ b/lib/Checker/ManagerRegistry.cpp
@@ -0,0 +1,20 @@
+//===- ManagerRegistry.cpp - Pluggble Analyzer module creators --*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file defines the pluggable analyzer module creators.
+//
+//===----------------------------------------------------------------------===//
+
+#include "clang/Checker/ManagerRegistry.h"
+
+using namespace clang;
+
+StoreManagerCreator ManagerRegistry::StoreMgrCreator = 0;
+
+ConstraintManagerCreator ManagerRegistry::ConstraintMgrCreator = 0;