mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
a8a8da3bae
This commit imports all the revng pipes (and other support utilities) to be used with `revng-pipeline`. In particular, the pipes necessary for binary translations have been introduced.
16 lines
387 B
C++
16 lines
387 B
C++
/// \file LLVMContextWrapper.cpp
|
|
/// \brief LLVMContextWrapper wraps a llvm context so that it can be added to
|
|
/// the pipeline context
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng/Pipes/LLVMContextWrapper.h"
|
|
|
|
using namespace std;
|
|
using namespace pipeline;
|
|
using namespace revng::pipes;
|
|
|
|
const char LLVMContextWrapper::ID = '0';
|