Skip to content

Commit

Permalink
add V_CMPX_LE_I32 (shadps4-emu#1056)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnackmclain authored Sep 24, 2024
1 parent 6da6764 commit beb809b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/shader_recompiler/frontend/translate/vector_alu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,8 @@ void Translator::EmitVectorAlu(const GcnInst& inst) {
return V_CMP_U32(ConditionOp::LG, true, false, inst);
case Opcode::V_CMP_GE_I32:
return V_CMP_U32(ConditionOp::GE, true, false, inst);
case Opcode::V_CMPX_LE_I32:
return V_CMP_U32(ConditionOp::LE, true, true, inst);

// V_CMPX_{OP8}_I32
case Opcode::V_CMPX_LT_I32:
Expand Down

0 comments on commit beb809b

Please sign in to comment.