]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.h
Merge clang 7.0.1 and several follow-up changes
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Frontend / FrontendPluginRegistry.h
1 //===- FrontendPluginRegistry.h ---------------------------------*- 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 // Pluggable Frontend Action Interface
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_CLANG_FRONTEND_FRONTENDPLUGINREGISTRY_H
15 #define LLVM_CLANG_FRONTEND_FRONTENDPLUGINREGISTRY_H
16
17 #include "clang/Frontend/FrontendAction.h"
18 #include "llvm/Support/Registry.h"
19
20 namespace clang {
21
22 /// The frontend plugin registry.
23 using FrontendPluginRegistry = llvm::Registry<PluginASTAction>;
24
25 } // namespace clang
26
27 #endif // LLVM_CLANG_FRONTEND_FRONTENDPLUGINREGISTRY_H