blob: 24c703219200210475bc680800f85ebc7adfe3be [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);
Tom Caredb2fa8a2010-07-06 21:43:29 +000025void RegisterIdempotentOperationChecker(GRExprEngine &Eng);
Ted Kremenekac9bea82009-11-12 06:17:47 +000026
27} // end clang namespace
28#endif