mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
21 lines
491 B
C++
21 lines
491 B
C++
/// \file Flattening.cpp
|
|
/// \brief Helper functions for flattening the RegionCFGTree after combing
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
// revng libraries includes
|
|
#include "revng/Support/Debug.h"
|
|
|
|
// local libraries includes
|
|
#include "revng-c/RestructureCFGPass/RegionCFGTree.h"
|
|
|
|
// local includes
|
|
#include "Flattening.h"
|
|
|
|
Logger<> FlattenLog("flattening");
|
|
|
|
void flattenRegionCFGTree(RegionCFG &Root, std::vector<RegionCFG> &Regions) {
|
|
}
|