ir3: remove unnecessary reconvergence point in scan_clusters lowering

The body of the while loop does not need a reconvergence point since it
only has an incoming backwards branch.

Signed-off-by: Job Noorman <jnoorman@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29409>
This commit is contained in:
Job Noorman 2024-08-16 15:54:24 +02:00 committed by Marge Bot
parent a13394ad91
commit 053612b7cf

View file

@ -367,7 +367,6 @@ lower_instr(struct ir3 *ir, struct ir3_block **block, struct ir3_instruction *in
struct ir3_block *store = ir3_block_create(ir);
list_add(&store->node, &body->node);
body->reconvergence_point = true;
after_block->reconvergence_point = true;
link_blocks_jump(before_block, body);