reg_alloc: GetBitWidth: Add UNREACHABLE

This commit is contained in:
MerryMage 2018-01-18 23:46:01 +00:00
parent fff8e019dc
commit 9a812b0c61

View file

@ -73,6 +73,8 @@ static size_t GetBitWidth(IR::Type type) {
case IR::Type::NZCVFlags:
return 32; // TODO: Update to 16 when flags optimization is done
}
UNREACHABLE();
return 0;
}
bool HostLocInfo::IsLocked() const {