Add S_SETPRIO to EmitFlowControl (#2727)

By squidbus' suggestion, I've added a warning log for this case.
This commit is contained in:
Stephen Miller 2025-03-31 04:55:14 -05:00 committed by GitHub
parent 374b66ad8e
commit b0a12c02e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,6 +13,9 @@ void Translator::EmitFlowControl(u32 pc, const GcnInst& inst) {
case Opcode::S_TTRACEDATA:
LOG_WARNING(Render_Vulkan, "S_TTRACEDATA instruction!");
return;
case Opcode::S_SETPRIO:
LOG_WARNING(Render_Vulkan, "S_SETPRIO instruction!");
return;
case Opcode::S_GETPC_B64:
return S_GETPC_B64(pc, inst);
case Opcode::S_WAITCNT: