mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 07:08:04 +02:00
jay: check for inverse-ballots in jay_uses_flag
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41215>
This commit is contained in:
parent
86f19bc983
commit
80081ef7b2
1 changed files with 2 additions and 1 deletions
|
|
@ -631,7 +631,8 @@ jay_num_isa_srcs(const jay_inst *I)
|
|||
static inline bool
|
||||
jay_uses_flag(const jay_inst *I)
|
||||
{
|
||||
return I->predication ||
|
||||
return jay_is_flag(I->dst) ||
|
||||
I->predication ||
|
||||
!jay_is_null(I->cond_flag) ||
|
||||
I->op == JAY_OPCODE_SEL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue