From 3850f8b1675f94ed768441fec19d73a032d92252 Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Wed, 22 Jan 2025 10:38:35 +0000 Subject: [PATCH] microsoft/compiler: invalidate loop analysis in dxil_nir_lower_double_math Signed-off-by: Rhys Perry Reviewed-by: Jesse Natalie Part-of: --- src/microsoft/compiler/dxil_nir.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/microsoft/compiler/dxil_nir.c b/src/microsoft/compiler/dxil_nir.c index 43e30a523eb..9cdf8381289 100644 --- a/src/microsoft/compiler/dxil_nir.c +++ b/src/microsoft/compiler/dxil_nir.c @@ -1174,8 +1174,7 @@ dxil_nir_lower_double_math(nir_shader *shader) { return nir_shader_instructions_pass(shader, dxil_nir_lower_double_math_instr, - nir_metadata_control_flow | - nir_metadata_loop_analysis, + nir_metadata_control_flow, NULL); }