Skip to content

aco: Fix how p_is_helper interacts with optimizations.

Timur Kristóf requested to merge Venemo/mesa:aco-fix-is-helper into main

p_is_helper doesn't have any operands, so ACO's value numbering and/or the pre-RA optimizer could incorrectly recognize two such instructions as the same.

This patch adds exec as an operand to p_is_helper in order to achieve correct behavior.

Merge request reports