blob: 622b5ab1108f2c3aced8a6943aeca3fb63ba93d3 [file] [log] [blame]
Ted Kremenek1053d242009-11-06 02:24:13 +00001//=-- GRExprEngineInternalChecks.h- Builtin GRExprEngine Checks -----*- 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 the "built-in"
11// checks in GRExprEngine.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_GREXPRENGINE_INTERNAL_CHECKS
16#define LLVM_CLANG_GREXPRENGINE_INTERNAL_CHECKS
17
18namespace clang {
19
20class GRExprEngine;
21
22void RegisterReturnStackAddressChecker(GRExprEngine &Eng);
23void RegisterReturnUndefChecker(GRExprEngine &Eng);
24
25} // end clang namespace
26#endif