diff options
author | Brian <[email protected]> | 2007-03-08 10:40:37 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-03-08 10:40:37 -0700 |
commit | c9f486c38f80a71b89152bde78be628b531101ef (patch) | |
tree | 9df99d69d19efa0afeece288054f6cc77527008b /src/mesa/shader/slang | |
parent | bf86ddaa2018d58c894da27d7a7a7b5449d1338e (diff) |
remove old assertion
Diffstat (limited to 'src/mesa/shader/slang')
-rw-r--r-- | src/mesa/shader/slang/slang_emit.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/shader/slang/slang_emit.c b/src/mesa/shader/slang/slang_emit.c index df53c013b12..1d18929b4d5 100644 --- a/src/mesa/shader/slang/slang_emit.c +++ b/src/mesa/shader/slang/slang_emit.c @@ -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); |