summaryrefslogtreecommitdiffstats
path: root/lib/StaticAnalyzer/Checkers/ExperimentalChecks.h
blob: 1f38ad77ebde82d543791a81cc368d5247313c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//=-- ExperimentalChecks.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 ExprEngine.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_CLANG_GR_ExprEngine_EXPERIMENTAL_CHECKS
#define LLVM_CLANG_GR_ExprEngine_EXPERIMENTAL_CHECKS

namespace clang {

namespace ento {

class ExprEngine;

void RegisterAnalyzerStatsChecker(ExprEngine &Eng);
void RegisterMallocChecker(ExprEngine &Eng);

} // end GR namespace

} // end clang namespace

#endif
OpenPOWER on IntegriCloud