From: Pavel Ondračka Date: Wed, 9 Aug 2023 06:32:01 +0000 (+0200) Subject: r300: exit early in presubtract is not supported X-Git-Tag: upstream/23.3.3~2776 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b743603383df45ae3d0af428c93a8926a2152e6;p=platform%2Fupstream%2Fmesa.git r300: exit early in presubtract is not supported Reviewed-by: Filip Gawin Part-of: --- diff --git a/src/gallium/drivers/r300/compiler/radeon_optimize.c b/src/gallium/drivers/r300/compiler/radeon_optimize.c index d6a911d..9ecb9ec 100644 --- a/src/gallium/drivers/r300/compiler/radeon_optimize.c +++ b/src/gallium/drivers/r300/compiler/radeon_optimize.c @@ -809,15 +809,18 @@ static int peephole_mul_omod( */ static int peephole(struct radeon_compiler * c, struct rc_instruction * inst) { - switch(inst->U.I.Opcode){ + if (!c->has_presub) + return 0; + + switch(inst->U.I.Opcode) { case RC_OPCODE_ADD: - if (c->has_presub) { - if(peephole_add_presub_inv(c, inst)) - return 1; - if(peephole_add_presub_add(c, inst)) - return 1; - } + { + if (peephole_add_presub_inv(c, inst)) + return 1; + if (peephole_add_presub_add(c, inst)) + return 1; break; + } default: break; }