From 9ffa7c826fc8534b176d35d67bc86eeee70dda15 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Thu, 23 Apr 2026 17:21:08 +0200 Subject: [PATCH] nir/tests: handle new multadd opcodes Reviewed-by: Georg Lehmann Part-of: --- src/compiler/nir/tests/opt_varyings_tests_bicm_binary_alu.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/nir/tests/opt_varyings_tests_bicm_binary_alu.cpp b/src/compiler/nir/tests/opt_varyings_tests_bicm_binary_alu.cpp index 79d80ce2e9e..80a24a43092 100644 --- a/src/compiler/nir/tests/opt_varyings_tests_bicm_binary_alu.cpp +++ b/src/compiler/nir/tests/opt_varyings_tests_bicm_binary_alu.cpp @@ -75,6 +75,7 @@ TEST_F(nir_opt_varyings_test_bicm_binary_alu, \ /* TES uses fadd and fmul for interpolation, so it's always present. */ \ if (MESA_SHADER_##consumer_stage != MESA_SHADER_TESS_EVAL || \ (nir_op_##alu != nir_op_fadd && nir_op_##alu != nir_op_fmul && \ + nir_op_##alu != nir_op_fmad && nir_op_##alu != nir_op_ffma && \ nir_op_##alu != nir_op_ffma_old)) { \ ASSERT_TRUE(!shader_contains_alu_op(b2, nir_op_##alu, bitsize)); \ } \