tgsi: Fix number operands for LOOP/ENDLOOP.

This commit is contained in:
Michal Krol
2009-07-30 10:33:18 +02:00
parent 1e9d3ad4e1
commit 65fb2c52f9
+2 -2
View File
@@ -106,11 +106,11 @@ static const struct tgsi_opcode_info opcode_info[TGSI_OPCODE_LAST] =
{ 1, 2, 1, 0, "TXL", TGSI_OPCODE_TXL },
{ 0, 0, 0, 0, "BRK", TGSI_OPCODE_BRK },
{ 0, 1, 0, 1, "IF", TGSI_OPCODE_IF },
{ 0, 0, 0, 0, "LOOP", TGSI_OPCODE_LOOP },
{ 1, 1, 0, 0, "LOOP", TGSI_OPCODE_LOOP },
{ 0, 1, 0, 0, "REP", TGSI_OPCODE_REP },
{ 0, 0, 0, 1, "ELSE", TGSI_OPCODE_ELSE },
{ 0, 0, 0, 0, "ENDIF", TGSI_OPCODE_ENDIF },
{ 0, 0, 0, 0, "ENDLOOP", TGSI_OPCODE_ENDLOOP },
{ 1, 0, 0, 0, "ENDLOOP", TGSI_OPCODE_ENDLOOP },
{ 0, 0, 0, 0, "ENDREP", TGSI_OPCODE_ENDREP },
{ 0, 1, 0, 0, "PUSHA", TGSI_OPCODE_PUSHA },
{ 1, 0, 0, 0, "POPA", TGSI_OPCODE_POPA },