broadcom/compiler: wrap nir_convert_to_lcssa with NIR_PASS_V

So we get it included with the NIR_DEBUG=print_xx debug options.

Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17609>
This commit is contained in:
Alejandro Piñeiro 2022-07-13 12:53:14 +02:00 committed by Marge Bot
parent 72cc268858
commit dea0fe8a06
1 changed files with 1 additions and 1 deletions

View File

@ -1604,7 +1604,7 @@ v3d_attempt_compile(struct v3d_compile *c)
}
NIR_PASS_V(c->s, nir_lower_bool_to_int32);
nir_convert_to_lcssa(c->s, true, true);
NIR_PASS_V(c->s, nir_convert_to_lcssa, true, true);
NIR_PASS_V(c->s, nir_divergence_analysis);
NIR_PASS_V(c->s, nir_convert_from_ssa, true);