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 | 062c2919494fabd10e68964b571903c8d8577a2c (patch) | |
tree | d00c7a1e58fb369bbdee26ca61365d86bae40155 /clang/lib/Analysis/ManagerRegistry.cpp | |
parent | eebed72fbbca0042291b1e2d021bc728757f651d (diff) | |
download | bcm5719-llvm-062c2919494fabd10e68964b571903c8d8577a2c.tar.gz bcm5719-llvm-062c2919494fabd10e68964b571903c8d8577a2c.zip |
After drinking caffeine, add the two files missing from the previous submit.
Sorry about that.
llvm-svn: 86869
Diffstat (limited to 'clang/lib/Analysis/ManagerRegistry.cpp')
-rw-r--r-- | clang/lib/Analysis/ManagerRegistry.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/clang/lib/Analysis/ManagerRegistry.cpp b/clang/lib/Analysis/ManagerRegistry.cpp new file mode 100644 index 00000000000..8943db2a234 --- /dev/null +++ b/clang/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; |