2018-01-04 23:05:27 +00:00
|
|
|
/* 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>
|
|
|
|
|
|
|
|
#include "frontend/A64/location_descriptor.h"
|
|
|
|
|
2018-01-26 13:51:48 +00:00
|
|
|
namespace Dynarmic::A64 {
|
2018-01-04 23:05:27 +00:00
|
|
|
|
|
|
|
std::ostream& operator<<(std::ostream& o, const LocationDescriptor& loc) {
|
|
|
|
o << fmt::format("{{{}, {}}}", loc.PC(), loc.FPCR().Value());
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2018-01-26 13:51:48 +00:00
|
|
|
} // namespace Dynarmic::A64
|