llvm-project/llvm/lib/Extensions/Extensions.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
433 B
C++
Raw Normal View History

#include "llvm/Passes/PassPlugin.h"
#define HANDLE_EXTENSION(Ext) \
llvm::PassPluginLibraryInfo get##Ext##PluginInfo();
#include "llvm/Support/Extension.def"
namespace llvm {
namespace details {
void extensions_anchor() {
#define HANDLE_EXTENSION(Ext) \
2020-09-09 07:12:46 +08:00
get##Ext##PluginInfo();
#include "llvm/Support/Extension.def"
}
}
}