Remove outdated TODOs in RegisterValue

These TODOs were for setting m_type in RegisterValue::SetValueFromString
in the case where reg_info's encoding was eEncodingUint or
eEncodingSint. m_type is set by SetUInt{8,16,32,64.128} during the
SetUInt call.

llvm-svn: 339959
This commit is contained in:
Alex Langford 2018-08-16 22:48:46 +00:00
parent 8ba631d9c8
commit 9084e82880
1 changed files with 0 additions and 3 deletions

View File

@ -380,7 +380,6 @@ Status RegisterValue::SetValueFromString(const RegisterInfo *reg_info,
"unsupported unsigned integer byte size: %u", byte_size);
break;
}
// TODO: Shouldn't we be setting m_type here?
break;
case eEncodingSint:
@ -410,8 +409,6 @@ Status RegisterValue::SetValueFromString(const RegisterInfo *reg_info,
byte_size);
break;
}
// TODO: Shouldn't we be setting m_type here?
break;
case eEncodingIEEE754: {