add Opcodes to switch case

Added Opcodes to switch case, they were done here but weren't added to switch 9f79764b01 (diff-9a6c2e2027c03231e88aaaab30908baecae202661839f35c31a777fec2500c7aR659)
This commit is contained in:
Mahmoud Adel 2024-10-04 11:01:12 +03:00 committed by GitHub
parent ec6579cb4f
commit d8c03e293d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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: