nouveau/nir: Lower 64-bit phis

Fixes arb_gpu_shader_fp64-fs-non-uniform-control-flow-ubo
on kepler with NV50_PROG_USE_NIR=1

Reviewed-by: Emma Anholt <emma@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14343>
This commit is contained in:
M Henning 2021-12-29 20:06:26 -05:00 committed by Marge Bot
parent ce72395008
commit d28677cfd9

View file

@ -3172,6 +3172,7 @@ Converter::run()
NIR_PASS(progress, nir, nir_copy_prop);
NIR_PASS(progress, nir, nir_opt_dce);
NIR_PASS(progress, nir, nir_opt_dead_cf);
NIR_PASS(progress, nir, nir_lower_64bit_phis);
} while (progress);
NIR_PASS_V(nir, nir_lower_bool_to_int32);