A32: Split off A32 specific IREmitter

This commit is contained in:
MerryMage 2018-01-01 15:47:56 +00:00
parent b3c73e2622
commit b1f0cf9278
15 changed files with 571 additions and 514 deletions

View file

@ -13,7 +13,7 @@ namespace Dynarmic {
namespace IR {
std::ostream& operator<<(std::ostream& o, const LocationDescriptor& descriptor) {
o << fmt::format("{{{{}}}}", descriptor.value);
o << fmt::format("{{{{}}}}", descriptor.Value());
return o;
}