gallivm: Use proper index to lookup predicate register array.

Doesn't fix anything, as those indices were both always 0.
This commit is contained in:
michal 2010-08-18 13:16:42 +02:00
parent c17d5de593
commit 8690c6a6b4

View file

@ -802,7 +802,7 @@ emit_store(
case TGSI_FILE_PREDICATE:
lp_exec_mask_store(&bld->exec_mask, pred, value,
bld->preds[index][chan_index]);
bld->preds[reg->Register.Index][chan_index]);
break;
default: