2008-11-27 02:19:10 +00:00
|
|
|
//===- 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-03-02 06:16:29 +00:00
|
|
|
#include "clang/Frontend/ManagerRegistry.h"
|
2008-11-27 01:55:08 +00:00
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
|
|
|
StoreManagerCreator ManagerRegistry::StoreMgrCreator = 0;
|
|
|
|
|
|
|
|
ConstraintManagerCreator ManagerRegistry::ConstraintMgrCreator = 0;
|