mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-04-29 22:50:53 +03:00
15 lines
463 B
C++
15 lines
463 B
C++
//===-- driver/plugins.h ---------------------------------------*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#pragma once
|
||
|
||
#include "llvm/Passes/PassBuilder.h"
|
||
|
||
void loadAllPlugins();
|
||
void registerAllPluginsWithPassBuilder(llvm::PassBuilder &PB);
|