mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-26 17:24:57 +01:00
IR/Value: Rename RegRef and ExtRegRef to A32Reg and A32ExtReg
This commit is contained in:
parent
83022322d1
commit
44f7f04b5c
5 changed files with 18 additions and 16 deletions
|
|
@ -161,9 +161,9 @@ std::string DumpBlock(const IR::Block& block) {
|
|||
return fmt::format("#{}", arg.GetU8());
|
||||
case Type::U32:
|
||||
return fmt::format("#{:#x}", arg.GetU32());
|
||||
case Type::RegRef:
|
||||
case Type::A32Reg:
|
||||
return A32::RegToString(arg.GetA32RegRef());
|
||||
case Type::ExtRegRef:
|
||||
case Type::A32ExtReg:
|
||||
return A32::ExtRegToString(arg.GetA32ExtRegRef());
|
||||
default:
|
||||
return "<unknown immediate type>";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue