diff --git a/src/intel/compiler/jay/jay_from_nir.c b/src/intel/compiler/jay/jay_from_nir.c index 3e1b345f1ee..ce07f1a9543 100644 --- a/src/intel/compiler/jay/jay_from_nir.c +++ b/src/intel/compiler/jay/jay_from_nir.c @@ -512,6 +512,7 @@ jay_emit_alu(struct nir_to_jay_state *nj, nir_alu_instr *alu) jay_BFI2(b, dst, src[0], src[1], src[2]); break; + case nir_op_ffma: case nir_op_ffma_old: jay_MAD(b, type, dst, src[0], src[1], src[2]); break;