asahi/clc: call nir_opt_remove_phis after nir_opt_loop

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33666>
This commit is contained in:
Daniel Schürmann 2026-01-26 10:46:38 +01:00 committed by Marge Bot
parent 028da14e2a
commit 71d68d9166

View file

@ -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);