From 028da14e2ae0bcdfb8f74eeb650a6fa986a5a430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Wed, 17 Dec 2025 20:26:40 +0100 Subject: [PATCH] panfrost/clc: call nir_opt_remove_phis after nir_opt_loop Part-of: --- src/panfrost/clc/pan_compile.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/panfrost/clc/pan_compile.c b/src/panfrost/clc/pan_compile.c index 00eee1507bd..3d4142c8b20 100644 --- a/src/panfrost/clc/pan_compile.c +++ b/src/panfrost/clc/pan_compile.c @@ -424,6 +424,7 @@ main(int argc, const char **argv) do { progress = false; NIR_PASS(progress, s, nir_opt_loop); + NIR_PASS(_, s, nir_opt_remove_phis); } while (progress); pan_preprocess_nir(s, inputs.gpu_id);