blob: fb867a98f07fa674e9f7e34e4d8b9b625c21abba [file] [log] [blame]
Ted Kremenekac9bea82009-11-12 06:17:47 +00001//=-- GRExprEngineExperimentalChecks.h ------------------------------*- C++ -*-=
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines functions to instantiate and register experimental
11// checks in GRExprEngine.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_GREXPRENGINE_EXPERIMENTAL_CHECKS
16#define LLVM_CLANG_GREXPRENGINE_EXPERIMENTAL_CHECKS
17
18namespace clang {
19
20class GRExprEngine;
21
22void RegisterPthreadLockChecker(GRExprEngine &Eng);
Zhongxing Xu7b760962009-11-13 07:25:27 +000023void RegisterMallocChecker(GRExprEngine &Eng);
Zhongxing Xuc1960952010-06-16 05:38:05 +000024void RegisterStreamChecker(GRExprEngine &Eng);
Ted Kremenekac9bea82009-11-12 06:17:47 +000025
26} // end clang namespace
27#endif