mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
16 lines
316 B
C++
16 lines
316 B
C++
//
|
|
// Copyright rev.ng Labs Srl. See LICENSE.md for details.
|
|
//
|
|
//
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "revng-c/RestructureCFGPass/LoadGHAST.h"
|
|
|
|
using namespace llvm;
|
|
|
|
char LoadGHASTWrapperPass::ID;
|
|
|
|
using Reg = llvm::RegisterPass<LoadGHASTWrapperPass>;
|
|
static Reg X("load-ghast", "Initialize the GHAST", true, true);
|