dynarmic/src/frontend/ir/location_descriptor.cpp

22 lines
542 B
C++
Raw Normal View History

/* This file is part of the dynarmic project.
* Copyright (c) 2016 MerryMage
* This software may be used and distributed according to the terms of the GNU
* General Public License version 2 or any later version.
*/
#include <ostream>
#include <fmt/format.h>
2018-01-01 15:23:56 +00:00
#include "frontend/ir/location_descriptor.h"
namespace Dynarmic {
namespace IR {
2018-01-01 15:23:56 +00:00
std::ostream& operator<<(std::ostream& o, const LocationDescriptor& descriptor) {
2018-01-01 15:47:56 +00:00
o << fmt::format("{{{{}}}}", descriptor.Value());
return o;
}
} // namespace IR
} // namespace Dynarmic