Files
revng-revng/lib/Yield/ControlFlow/SVG.cpp
T
2022-06-14 18:55:59 +03:00

18 lines
427 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/Internal/Function.h"
#include "revng/Yield/SVG.h"
std::string yield::svg::controlFlow(const yield::Function &Function,
const model::Binary &Binary) {
return Function.Name;
}