mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
16 lines
450 B
C++
16 lines
450 B
C++
/// \file LLVMContainer.cpp
|
|
/// \brief A llvm container is a container which uses a llvm module as a
|
|
/// backend, and can be customized with downstream kinds that specify which
|
|
/// global objects in it are which target.
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng/Pipeline/LLVMContainer.h"
|
|
|
|
char pipeline::LLVMContainerTypeID = '0';
|
|
|
|
template<>
|
|
const char pipeline::LLVMContainer::ID = '0';
|