reg_alloc: GetBitWidth: Add UNREACHABLE

This commit is contained in:
MerryMage 2018-01-18 23:46:01 +00:00
parent adccbf3c6b
commit 50c18181aa

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 {