From: Gert Wollny Date: Tue, 22 Sep 2020 07:02:08 +0000 (+0200) Subject: r600/sfn: remove a useless if-condition X-Git-Tag: upstream/21.0.0~5187 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1625a9b9ae20c5c037dcae018d7e5dab0bcabdef;p=platform%2Fupstream%2Fmesa.git r600/sfn: remove a useless if-condition Signed-off-by: Gert Wollny Part-of: --- diff --git a/src/gallium/drivers/r600/sfn/sfn_nir.cpp b/src/gallium/drivers/r600/sfn/sfn_nir.cpp index d774943..6150c93 100644 --- a/src/gallium/drivers/r600/sfn/sfn_nir.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_nir.cpp @@ -787,8 +787,7 @@ int r600_shader_from_nir(struct r600_context *rctx, * when there are registers, then we can no longer copy propagate, so * skip the optimization then. (There is probably a better way, but yeah) */ - if (true) - while(optimize_once(sel->nir)); + while(optimize_once(sel->nir)); NIR_PASS_V(sel->nir, nir_remove_dead_variables, nir_var_shader_in, NULL); NIR_PASS_V(sel->nir, nir_remove_dead_variables, nir_var_shader_out, NULL);