remove old assertion
authorBrian <brian@yutani.localnet.net>
Thu, 8 Mar 2007 17:40:37 +0000 (10:40 -0700)
committerBrian <brian@yutani.localnet.net>
Thu, 8 Mar 2007 17:40:37 +0000 (10:40 -0700)
src/mesa/shader/slang/slang_emit.c

index df53c013b12ca0995881a9e9e34c96a51088587a..1d18929b4d5f2377152b8f1a3177f8d4c5f6b5f9 100644 (file)
@@ -1021,7 +1021,6 @@ emit_move(slang_emit_info *emitInfo, slang_ir_node *n)
          char *srcAnnot, *dstAnnot;
          inst = new_instruction(emitInfo, OPCODE_MOV);
          assert(n->Children[0]->Store->Index >= 0);
-         assert(n->Children[0]->Store->Index < 16);
          storage_to_dst_reg(&inst->DstReg, n->Children[0]->Store, n->Writemask);
          storage_to_src_reg(&inst->SrcReg[0], n->Children[1]->Store);
          dstAnnot = storage_annotation(n->Children[0], emitInfo->prog);