tgsi: Remove redundant code.

This commit is contained in:
Michal Krol 2008-07-20 19:29:52 +02:00
parent 83f245bd24
commit 613f0df64d
2 changed files with 0 additions and 2 deletions

View file

@ -536,7 +536,6 @@ tgsi_dump(
/* sanity checks */
assert( strcmp( opcode_names[TGSI_OPCODE_CONT], "CONT" ) == 0 );
assert( strcmp( opcode_names[TGSI_OPCODE_END], "END" ) == 0 );
assert( strcmp( opcode_names[TGSI_OPCODE_END], "END" ) == 0 );
ctx.iter.prolog = prolog;
ctx.iter.iterate_instruction = iter_instruction;

View file

@ -773,7 +773,6 @@ tgsi_dump_c(
/* sanity checks */
assert(strcmp(TGSI_OPCODES[TGSI_OPCODE_CONT], "OPCODE_CONT") == 0);
assert(strcmp(TGSI_OPCODES[TGSI_OPCODE_END], "OPCODE_END") == 0);
assert(strcmp(TGSI_OPCODES[TGSI_OPCODE_END], "OPCODE_END") == 0);
tgsi_parse_init( &parse, tokens );