panfrost/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 2025-12-17 20:26:40 +01:00 committed by Marge Bot
parent 809fb0fba3
commit 028da14e2a

View file

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