mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
604d370239
Now that the late stage of the decompilation pipeline is managed with revng-pipeline, and we have a standalone tool for decompilation, we have no need to use LLVM passes anymore for those stages. This commit also renames the directories to avoid the confusing Pass suffix, not what LLVM passes are gone.
13 lines
351 B
C++
13 lines
351 B
C++
/// \file Metaregion.cpp
|
|
/// FunctionPass that applies the comb to the RegionCFG of a function
|
|
|
|
//
|
|
// Copyright rev.ng Labs Srl. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "revng-c/RestructureCFG/MetaRegionImpl.h"
|
|
|
|
// Explicit instantation for the `Metaregion` template class for
|
|
// llvm::BasicBlock type.
|
|
template class MetaRegion<llvm::BasicBlock *>;
|