[amdgpu] Stub V_INTERP_MOV_F32

This commit is contained in:
Ivan Chikish 2023-07-21 15:34:05 +03:00
parent 1ea8e148fa
commit ec0c3f80c0

View file

@ -3600,6 +3600,11 @@ void convertVintrp(Fragment &fragment, Vintrp inst) {
fragment.setVectorOperand(inst.vdst, {channelType, attrChan});
break;
}
case Vintrp::Op::V_INTERP_MOV_F32: {
fragment.setVectorOperand(
inst.vdst, fragment.getScalarOperand(inst.vsrc, TypeId::Float32x4));
break;
}
default:
inst.dump();