IR/Value: Rename RegRef and ExtRegRef to A32Reg and A32ExtReg

This commit is contained in:
MerryMage 2018-01-05 20:30:41 +00:00
parent 83022322d1
commit 44f7f04b5c
5 changed files with 18 additions and 16 deletions

View file

@ -52,8 +52,8 @@ const char* GetNameOf(Opcode op) {
}
const char* GetNameOf(Type type) {
static const std::array<const char*, 12> names = {
"Void", "RegRef", "ExtRegRef", "Opaque", "U1", "U8", "U16", "U32", "U64", "F32", "F64", "CoprocInfo"
static const std::array<const char*, 14> names = {
"Void", "A32Reg", "A32ExtReg", "A64Reg", "A64Vec", "Opaque", "U1", "U8", "U16", "U32", "U64", "F32", "F64", "CoprocInfo"
};
return names.at(static_cast<size_t>(type));
}