add Opcodes to switch case (#1233)

* add Opcodes to switch case

Added Opcodes to switch case, they were done here but weren't added to switch 9f79764b01 (diff-9a6c2e2027c03231e88aaaab30908baecae202661839f35c31a777fec2500c7aR659)

* clang
This commit is contained in:
Mahmoud Adel 2024-10-04 11:24:45 +03:00 committed by GitHub
parent db788d57ec
commit e38b2566e6

View file

@ -117,6 +117,12 @@ void Translator::EmitVectorAlu(const GcnInst& inst) {
return V_CVT_F32_F16(inst);
case Opcode::V_CVT_FLR_I32_F32:
return V_CVT_FLR_I32_F32(inst);
case Opcode::V_CVT_F32_F64:
return V_CVT_F32_F64(inst);
case Opcode::V_CVT_F64_F32:
return V_CVT_F64_F32(inst);
case Opcode::V_CVT_RPI_I32_F32:
return V_CVT_RPI_I32_F32(inst);
case Opcode::V_CVT_OFF_F32_I4:
return V_CVT_OFF_F32_I4(inst);
case Opcode::V_CVT_F32_UBYTE0: