mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
7d235f4fd0
Also do some basic cleanup: capitalize first letters, add `.` at the end of the sentences, and so on.
28 lines
536 B
C++
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);
|
|
}
|