mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-09 08:30:00 +01:00
Most of the time when this occurs, it's a bug. Thankfully this isn't the case. However, we can resolve these cases to make the codebase more consistent.
20 lines
546 B
C++
20 lines
546 B
C++
/* 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"
|
|
|
|
namespace Dynarmic::A64 {
|
|
|
|
std::ostream& operator<<(std::ostream& o, const LocationDescriptor& descriptor) {
|
|
o << fmt::format("{{{}, {}}}", descriptor.PC(), descriptor.FPCR().Value());
|
|
return o;
|
|
}
|
|
|
|
} // namespace Dynarmic::A64
|