Files
revng-revng/lib/Yield/ControlFlow/SVG.cpp
T
2022-06-15 15:52:26 +03:00

18 lines
430 B
C++

/// \file Graph.cpp
/// \brief
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "llvm/Support/FormatVariadic.h"
#include "revng/Model/Binary.h"
#include "revng/Yield/Function.h"
#include "revng/Yield/SVG.h"
std::string yield::svg::controlFlow(const yield::Function &Function,
const model::Binary &Binary) {
return Function.Entry.toString();
}