Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:36:55

0001 //===- FrontendPluginRegistry.h ---------------------------------*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 //
0009 // Pluggable Frontend Action Interface
0010 //
0011 //===----------------------------------------------------------------------===//
0012 
0013 #ifndef LLVM_CLANG_FRONTEND_FRONTENDPLUGINREGISTRY_H
0014 #define LLVM_CLANG_FRONTEND_FRONTENDPLUGINREGISTRY_H
0015 
0016 #include "clang/Frontend/FrontendAction.h"
0017 #include "clang/Support/Compiler.h"
0018 #include "llvm/Support/Registry.h"
0019 
0020 namespace clang {
0021 
0022 /// The frontend plugin registry.
0023 using FrontendPluginRegistry = llvm::Registry<PluginASTAction>;
0024 
0025 } // namespace clang
0026 
0027 namespace llvm {
0028 extern template class CLANG_TEMPLATE_ABI Registry<clang::PluginASTAction>;
0029 } // namespace llvm
0030 
0031 #endif // LLVM_CLANG_FRONTEND_FRONTENDPLUGINREGISTRY_H