hotfix: Restore unreachable
Some checks are pending
Reuse / reuse (push) Waiting to run
Clang Format / clang-format (push) Waiting to run
Linux-Qt / build (push) Waiting to run
Linux / build (push) Waiting to run
macOS-Qt / build (push) Waiting to run
macOS / build (push) Waiting to run
Windows-Qt / build (push) Waiting to run
Windows / build (push) Waiting to run

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 {};
}