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:
Jakob Bornecrantz 2010-09-22 22:29:15 +02:00
parent eaa6bf59db
commit 4bb42a4f7e

View file

@ -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: