nvc0: remove bad assert and emit TEMP movs instead

This commit is contained in:
Christoph Bumiller 2011-01-22 13:59:47 +01:00
parent f9bb1c8b33
commit 95eef7a705
1 changed files with 1 additions and 2 deletions

View File

@ -878,11 +878,10 @@ emit_store(struct bld_context *bld, const struct tgsi_full_instruction *inst,
break;
case TGSI_FILE_TEMPORARY:
assert(idx < BLD_MAX_TEMPS);
if (!res->insn)
if (!res->insn || res->insn->bb != bld->pc->current_block)
res = bld_insn_1(bld, NV_OP_MOV, res);
assert(res->reg.file == NV_FILE_GPR);
assert(res->insn->bb = bld->pc->current_block);
if (bld->ti->require_stores)
bld_lmem_store(bld, ptr, idx * 4 + chan, res);