Files
revng-revng/lib/Yield/Dump.cpp
2022-06-15 15:51:23 +03:00

28 lines
513 B
C++

/// \file Dump.cpp
/// \brief
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "revng/Yield/BasicBlock.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);
}