blob: e50dbeba68875e2534e0ac3b007bc65efa34d66f [file] [log] [blame]
Ted Kremenekeb941132009-11-13 01:15: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#include "GRExprEngineExperimentalChecks.h"
16#include "clang/Analysis/LocalCheckers.h"
17
18using namespace clang;
19
20void clang::RegisterExperimentalChecks(GRExprEngine &Eng) {
21 RegisterPthreadLockChecker(Eng);
22}
23