From: Christoph Bumiller Date: Sun, 29 Apr 2012 15:43:46 +0000 (+0200) Subject: nvc0/ir/opt: INTERP does not support JOIN X-Git-Tag: android-x86-4.4-r1~6050 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=d46f969b84a405dff6bbc647a7addd0902adc1e4;p=android-x86%2Fexternal-mesa.git nvc0/ir/opt: INTERP does not support JOIN --- diff --git a/src/gallium/drivers/nv50/codegen/nv50_ir_peephole.cpp b/src/gallium/drivers/nv50/codegen/nv50_ir_peephole.cpp index 8613d7f2efd..db5195cd582 100644 --- a/src/gallium/drivers/nv50/codegen/nv50_ir_peephole.cpp +++ b/src/gallium/drivers/nv50/codegen/nv50_ir_peephole.cpp @@ -1935,6 +1935,8 @@ FlatteningPass::visit(BasicBlock *bb) if (insn && !insn->getPredicate() && !insn->asFlow() && insn->op != OP_TEXBAR && + insn->op != OP_LINTERP && // probably just nve4 + insn->op != OP_PINTERP && // probably just nve4 !insn->isNop()) { insn->join = 1; bb->remove(bb->getExit());