mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-02 00:10:33 +01:00
tgsi: Fix missing test before check
As introduced with commit d21301675c
NOTE: This is a candidate for the 7.9 branch.
This commit is contained in:
parent
eaa6bf59db
commit
4bb42a4f7e
1 changed files with 2 additions and 1 deletions
|
|
@ -2975,7 +2975,8 @@ tgsi_emit_sse2(
|
|||
tgsi_get_processor_name(proc));
|
||||
}
|
||||
|
||||
ok = check_soa_dependencies(&parse.FullToken.FullInstruction);
|
||||
if (ok)
|
||||
ok = check_soa_dependencies(&parse.FullToken.FullInstruction);
|
||||
break;
|
||||
|
||||
case TGSI_TOKEN_TYPE_IMMEDIATE:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue