1218887Sdim//==- LocalCheckers.h - Intra-Procedural+Flow-Sensitive Checkers -*- C++ -*-==//
2218887Sdim//
3218887Sdim//                     The LLVM Compiler Infrastructure
4218887Sdim//
5218887Sdim// This file is distributed under the University of Illinois Open Source
6218887Sdim// License. See LICENSE.TXT for details.
7218887Sdim//
8218887Sdim//===----------------------------------------------------------------------===//
9218887Sdim//
10218887Sdim//  This file defines the interface to call a set of intra-procedural (local)
11218887Sdim//  checkers that use flow/path-sensitive analyses to find bugs.
12218887Sdim//
13218887Sdim//===----------------------------------------------------------------------===//
14218887Sdim
15218887Sdim#ifndef LLVM_CLANG_GR_LOCALCHECKERS_H
16218887Sdim#define LLVM_CLANG_GR_LOCALCHECKERS_H
17218887Sdim
18218887Sdimnamespace clang {
19218887Sdimnamespace ento {
20218887Sdim
21218887Sdimclass ExprEngine;
22218887Sdim
23218887Sdimvoid RegisterCallInliner(ExprEngine &Eng);
24218887Sdim
25226633Sdim} // end namespace ento
26218887Sdim} // end namespace clang
27218887Sdim
28218887Sdim#endif
29