From 8e036fcaecb5fcc62761f2804ece0dc8186d1c51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Thu, 4 Dec 2025 17:34:38 -0500 Subject: [PATCH] nir/opt_licm: use nir_metadata_control_flow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Daniel Schürmann Part-of: --- src/compiler/nir/nir_opt_licm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/nir/nir_opt_licm.c b/src/compiler/nir/nir_opt_licm.c index 6ccbdcfc401..ec13ee9b689 100644 --- a/src/compiler/nir/nir_opt_licm.c +++ b/src/compiler/nir/nir_opt_licm.c @@ -157,7 +157,7 @@ nir_opt_licm(nir_shader *shader) state.loop = NULL; progress |= nir_progress(visit_cf_list(&impl->body, &state), impl, - nir_metadata_block_index | nir_metadata_dominance); + nir_metadata_control_flow); } return progress;