diff options
author | Christoph Bumiller <[email protected]> | 2011-01-22 13:59:47 +0100 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2011-01-23 13:07:30 +0100 |
commit | 95eef7a7059c5323230badbf024f3af74a62a6cb (patch) | |
tree | 6ee88a19905035efad604fc17be86d7f9bbb46e3 /src/gallium/drivers/nvc0 | |
parent | f9bb1c8b3332d26596dd37063d0b9866bc40e63d (diff) |
nvc0: remove bad assert and emit TEMP movs instead
Diffstat (limited to 'src/gallium/drivers/nvc0')
-rw-r--r-- | src/gallium/drivers/nvc0/nvc0_tgsi_to_nc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/nvc0/nvc0_tgsi_to_nc.c b/src/gallium/drivers/nvc0/nvc0_tgsi_to_nc.c index 3709369ca2f..be1bb44931d 100644 --- a/src/gallium/drivers/nvc0/nvc0_tgsi_to_nc.c +++ b/src/gallium/drivers/nvc0/nvc0_tgsi_to_nc.c @@ -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); |