hotfix: Restore unreachable

This commit is contained in:
TheTurtle 2024-09-12 23:46:29 +03:00 committed by GitHub
parent b911c70d35
commit 1b6cc447b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3719,9 +3719,8 @@ InstFormat InstructionFormat(InstEncoding encoding, uint32_t opcode) {
case InstEncoding::VOP2:
return InstructionFormatVOP2[opcode];
default:
return {};
UNREACHABLE();
}
UNREACHABLE();
return {};
}