diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2009-11-11 19:43:37 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2009-11-11 19:43:37 +0000 |
commit | 0059f1cfb84bcdd78a385f5e3c016374c953756b (patch) | |
tree | 8be1b83fdbab003d105d7e98122db0e8c3085b5e /lib/Analysis/ManagerRegistry.cpp | |
parent | d9e1530ef3a2f4d1cc3af83995b603751de30c14 (diff) |
After drinking caffeine, add the two files missing from the previous submit.
Sorry about that.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86869 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ManagerRegistry.cpp')
-rw-r--r-- | lib/Analysis/ManagerRegistry.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/Analysis/ManagerRegistry.cpp b/lib/Analysis/ManagerRegistry.cpp new file mode 100644 index 0000000000..8943db2a23 --- /dev/null +++ b/lib/Analysis/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/Analysis/ManagerRegistry.h" + +using namespace clang; + +StoreManagerCreator ManagerRegistry::StoreMgrCreator = 0; + +ConstraintManagerCreator ManagerRegistry::ConstraintMgrCreator = 0; |