mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-24 12:25:00 +00:00
Silence unhandled case warns (#823)
This commit is contained in:
parent
a49c7e9dcb
commit
b911c70d35
4 changed files with 17 additions and 0 deletions
|
@ -1364,6 +1364,8 @@ U16U32U64 IREmitter::UConvert(size_t result_bitsize, const U16U32U64& value) {
|
|||
switch (value.Type()) {
|
||||
case Type::U16:
|
||||
return Inst<U32>(Opcode::ConvertU32U16, value);
|
||||
default:
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
|
|
|
@ -81,6 +81,7 @@ bool Value::operator==(const Value& other) const {
|
|||
case Type::F64x2:
|
||||
case Type::F64x3:
|
||||
case Type::F64x4:
|
||||
default:
|
||||
break;
|
||||
}
|
||||
UNREACHABLE_MSG("Invalid type {}", type);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue