mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
18 lines
427 B
C++
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;
|
|
}
|