aboutsummaryrefslogtreecommitdiff
path: root/lib/StaticAnalyzer/Checkers/InternalChecks.h
blob: 3dd04c3a1750ec7a723b5921f281fc9871b7b03e (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
//=-- InternalChecks.h- Builtin ExprEngine Checks -------------------*- 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 the "built-in"
//  checks in ExprEngine.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_CLANG_GR_ExprEngine_INTERNAL_CHECKS
#define LLVM_CLANG_GR_ExprEngine_INTERNAL_CHECKS

namespace clang {

namespace ento {

class ExprEngine;

// Foundational checks that handle basic semantics.
void RegisterDereferenceChecker(ExprEngine &Eng);

} // end GR namespace

} // end clang namespace

#endif