Skip to content

Commit 76644a0

Browse files
authored
add Opcodes to switch case (shadps4-emu#1233)
* add Opcodes to switch case Added Opcodes to switch case, they were done here but weren't added to switch shadps4-emu@9f79764#diff-9a6c2e2027c03231e88aaaab30908baecae202661839f35c31a777fec2500c7aR659 * clang
1 parent ec6579c commit 76644a0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/shader_recompiler/frontend/translate/vector_alu.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,12 @@ void Translator::EmitVectorAlu(const GcnInst& inst) {
117117
return V_CVT_F32_F16(inst);
118118
case Opcode::V_CVT_FLR_I32_F32:
119119
return V_CVT_FLR_I32_F32(inst);
120+
case Opcode::V_CVT_F32_F64:
121+
return V_CVT_F32_F64(inst);
122+
case Opcode::V_CVT_F64_F32:
123+
return V_CVT_F64_F32(inst);
124+
case Opcode::V_CVT_RPI_I32_F32:
125+
return V_CVT_RPI_I32_F32(inst);
120126
case Opcode::V_CVT_OFF_F32_I4:
121127
return V_CVT_OFF_F32_I4(inst);
122128
case Opcode::V_CVT_F32_UBYTE0:

0 commit comments

Comments
 (0)