Files
revng-revng/include/revng/Yield/PTML.h
2022-07-28 08:47:34 +02:00

26 lines
576 B
C++

#pragma once
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include <string>
class MetaAddress;
namespace model {
class Binary;
}
namespace yield {
class Function;
}
namespace yield::ptml {
std::string functionAssembly(const yield::Function &InternalFunction,
const model::Binary &Binary);
std::string controlFlowNode(const MetaAddress &BasicBlockAddress,
const yield::Function &Function,
const model::Binary &Binary);
} // namespace yield::ptml