gallium: fix info entries for KIL, KILP
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 16 Sep 2008 18:52:19 +0000 (12:52 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 16 Sep 2008 18:52:19 +0000 (12:52 -0600)
KIL takes 1 src register.  KILP uses no registers (uses cond codes).

src/gallium/auxiliary/tgsi/tgsi_info.c

index a4899cd4c2d60d6d3438902b1c6ffaf6c2e1e76b..68c7a6b7f58749b158662cf56a3ea40703f1a8d2 100644 (file)
@@ -69,7 +69,7 @@ static const struct tgsi_opcode_info opcode_info[TGSI_OPCODE_LAST] =
    { 1, 1, 0, 0, "COS" },
    { 1, 1, 0, 0, "DDX" },
    { 1, 1, 0, 0, "DDY" },
-   { 0, 1, 0, 0, "KILP" },
+   { 0, 0, 0, 0, "KILP" },
    { 1, 1, 0, 0, "PK2H" },
    { 1, 1, 0, 0, "PK2US" },
    { 1, 1, 0, 0, "PK4B" },
@@ -146,7 +146,7 @@ static const struct tgsi_opcode_info opcode_info[TGSI_OPCODE_LAST] =
    { 0, 1, 0, 0, "CALLNZ" },
    { 0, 1, 0, 0, "IFC" },
    { 0, 1, 0, 0, "BREAKC" },
-   { 0, 0, 0, 0, "KIL" },
+   { 0, 1, 0, 0, "KIL" },
    { 0, 0, 0, 0, "END" },
    { 1, 1, 0, 0, "SWZ" }
 };