1 //===- ClangSACheckersEmitter.h - Generate Clang SA checkers tables -*- C++ -*-
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This tablegen backend emits Clang Static Analyzer checkers tables.
12 //===----------------------------------------------------------------------===//
14 #ifndef CLANGSACHECKERS_EMITTER_H
15 #define CLANGSACHECKERS_EMITTER_H
17 #include "TableGenBackend.h"
21 class ClangSACheckersEmitter
: public TableGenBackend
{
22 RecordKeeper
&Records
;
24 explicit ClangSACheckersEmitter(RecordKeeper
&R
) : Records(R
) {}
26 void run(raw_ostream
&OS
);
29 } // End llvm namespace