Removes a compiler warning about uninitialized variable.
Fixes: c02ffd2700c "ir3: Use the new NIR lowering pass for integer multiplication"
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Rob Clark <robclark@gmail.com>
Reviewed-by: Eduardo Lima <elima@igalia.com>
* However, we want a final swing of a few passes to have a chance
* at optimizing the result.
*/
- bool progress;
+ bool progress = false;
NIR_PASS(progress, ctx->s, ir3_nir_lower_imul);
if (progress) {
NIR_PASS_V(ctx->s, nir_opt_algebraic);