зеркало из https://github.com/microsoft/clang-1.git
27 строки
807 B
C++
27 строки
807 B
C++
//=-- GRExprEngineExperimentalChecks.h ------------------------------*- 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 functions to instantiate and register experimental
|
|
// checks in GRExprEngine.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_GREXPRENGINE_EXPERIMENTAL_CHECKS
|
|
#define LLVM_CLANG_GREXPRENGINE_EXPERIMENTAL_CHECKS
|
|
|
|
namespace clang {
|
|
|
|
class GRExprEngine;
|
|
|
|
void RegisterPthreadLockChecker(GRExprEngine &Eng);
|
|
void RegisterMallocChecker(GRExprEngine &Eng);
|
|
|
|
} // end clang namespace
|
|
#endif
|