From 71d68d916649aa072c91bd82ef0eb874588fd1c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Sch=C3=BCrmann?= Date: Mon, 26 Jan 2026 10:46:38 +0100 Subject: [PATCH] asahi/clc: call nir_opt_remove_phis after nir_opt_loop Part-of: --- src/asahi/clc/asahi_clc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/asahi/clc/asahi_clc.c b/src/asahi/clc/asahi_clc.c index b2fd2b36d22..f69dc92fbb0 100644 --- a/src/asahi/clc/asahi_clc.c +++ b/src/asahi/clc/asahi_clc.c @@ -319,6 +319,7 @@ main(int argc, char **argv) do { progress = false; NIR_PASS(progress, s, nir_opt_loop); + NIR_PASS(_, s, nir_opt_remove_phis); } while (progress); agx_preprocess_nir(s);