Files
revng-revng/lib/Yield/Dump.cpp
Ivan Krysak 7d235f4fd0 Enforce licence header consistency
Also do some basic cleanup: capitalize first letters, add `.`
at the end of the sentences, and so on.
2023-07-03 15:23:10 +00:00

28 lines
536 B
C++

/// \file Dump.cpp
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "revng/Yield/BasicBlock.h"
#include "revng/Yield/CallEdge.h"
#include "revng/Yield/Function.h"
#include "revng/Yield/Instruction.h"
#include "revng/Yield/Tag.h"
void yield::Tag::dump() const {
serialize(dbg, *this);
}
void yield::Instruction::dump() const {
serialize(dbg, *this);
}
void yield::BasicBlock::dump() const {
serialize(dbg, *this);
}
void yield::Function::dump() const {
serialize(dbg, *this);
}