Add S_SETPRIO to EmitFlowControl

By squidbus' suggestion, I've added a warning log for this case.
This commit is contained in:
Stephen Miller 2025-03-30 15:58:50 -05:00
parent 3f33d218b3
commit b9bf544ee4

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: